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": "WinkWink - Ace Your Studies & Questions, Using Quizlet", "version": "2.2", "description": "Ask WinkWink and rapidly find answers to quiz and study questions!", "permissions": [ "activeTab", "storage", "contextMenus", "scripting", "commands", "tabs" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "commands": { "search_with_wink": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Search with Wink" } }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "images\/icon48.png" ], "matches": [ "<all_urls>" ] } ] }