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, "minimum_chrome_version": "103", "name": "copy-to-anki: Create Anki Flashcards from your browser", "short_name": "copy-to-anki", "description": "Quickly create Anki flashcards from any webpage using ChatGPT. Highlight text and save cards with one click.", "author": "Tabish Mir", "homepage_url": "https:\/\/github.com\/taabishm2\/copy-to-anki\/", "version": "0.3.0", "permissions": [ "contextMenus", "storage", "tabs", "alarms" ], "host_permissions": [ "http:\/\/127.0.0.1:8765\/*", "https:\/\/api.openai.com\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "contentScript.js" ], "css": [ "manual.css" ], "run_at": "document_idle" } ], "commands": { "save-to-anki": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" }, "description": "Save selection to Anki" } }, "action": { "default_title": "copy-to-anki", "default_popup": "options.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon64.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon64.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "icons\/*" ], "matches": [ "<all_urls>" ] } ] }