Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Quizlet helper", "version": "3", "description": "This extension helps Quizlet users by dividing the 'Match' test screen into two columns, making it easier to use and more organized.", "permissions": [ "scripting", "activeTab", "tabs", "storage" ], "action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/quizlet.com\/*" ], "js": [ "lib\/kuromoji.js", "lib\/pinyin.js", "popup\/helper.js", "handle_language.js", "background.js" ] } ], "web_accessible_resources": [ { "resources": [ "dict\/**" ], "matches": [ "https:\/\/quizlet.com\/*" ] } ], "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" } }