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": "FlashNotes - Highlight To Flashcards", "version": "1.5.0", "description": "Create flashcards from highlighted text on any webpage & save them to your chrome storage.", "author": "Vivek Gaur", "icons": { "16": "icon_16.png", "64": "icon_64.png", "128": "icon_128.png" }, "permissions": [ "scripting", "storage", "contextMenus", "activeTab", "tabs" ], "web_accessible_resources": [ { "resources": [ "src\/dashboard.html", "src\/popup.html", "src\/*.js", "src\/*.css" ], "matches": [ "<all_urls>" ] } ], "host_permissions": [ "<all_urls>" ], "action": { "default_popup": "src\/popup.html", "default_icon": { "16": "icon_16.png", "64": "icon_64.png", "128": "icon_128.png" } }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_start" } ] }