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": "Ask AI", "version": "1.0", "description": "Right-click to ask AI about selected text", "permissions": [ "contextMenus", "storage", "activeTab", "scripting", "commands" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" } }, "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/api.openai.com\/*" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js", "imageContent.js" ] } ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Shift+A" }, "description": "Toggle AI input" } }, "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" } }