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": "Flashcards Panel", "description": "A Chrome side-panel extension for creating and reviewing flashcards.", "version": "1.0.0", "permissions": [ "storage", "commands", "activeTab", "sidePanel", "scripting", "unlimitedStorage" ], "action": { "default_title": "Click to open panel" }, "commands": { "add_front": { "suggested_key": { "default": "Ctrl+Shift+F" }, "description": "Send selected text to flashcard front" }, "add_back": { "suggested_key": { "default": "Ctrl+Shift+H" }, "description": "Send selected text to flashcard back" }, "undo": { "suggested_key": { "default": "Ctrl+Shift+U" }, "description": "Undo (delete) most recent flashcard" } }, "background": { "service_worker": "background.js" }, "side_panel": { "default_path": "sidepanel.html" }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" } }