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", "name": "Canvas Quiz To Quizlet", "version": "0.0.0.1", "description": "Convert structured HTML content into a plain text format that can be imported into tools like Quizlet", "manifest_version": 3, "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "assets\/logo16.png", "32": "assets\/logo16.png", "48": "assets\/logo16.png", "128": "assets\/logo16.png" } }, "icons": { "16": "assets\/logo16.png", "32": "assets\/logo16.png", "48": "assets\/logo16.png", "128": "assets\/logo16.png" }, "permissions": [ "tabs", "activeTab", "downloads", "scripting" ], "options_page": "options\/options.html", "background": { "service_worker": "background\/background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content\/content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [], "matches": [ "<all_urls>" ] } ] }