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": "Quicky AI", "version": "4.3.4", "description": "A quick and productive tool that brings ChatGPT at your fingertips on any website", "options_ui": { "page": "src\/pages\/options\/index.html", "open_in_tab": true }, "background": { "service_worker": "src\/pages\/background\/index.js", "type": "module" }, "action": { "default_icon": "icon-32.png" }, "permissions": [ "storage", "tabs", "contextMenus", "activeTab", "unlimitedStorage" ], "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "<all_urls>" ], "js": [ "src\/pages\/content\/index.js", "readability.js" ], "css": [ "contentStyle.css" ], "all_frames": false } ], "web_accessible_resources": [ { "resources": [ "icon-128.png", "icon-32.png", "guide.png", "contentStyle.css", "roboto.ttf", "roboto-md.ttf", "src\/pages\/options\/index.html" ], "matches": [ "<all_urls>" ] } ], "commands": { "generateRC": { "suggested_key": { "default": "Alt+Z", "mac": "Alt+Z", "chromeos": "Alt+Z", "linux": "Alt+Z" }, "description": "Trigger QuickyAI or open response window" }, "menuToggler": { "suggested_key": { "default": "Alt+J", "mac": "Alt+J", "chromeos": "Alt+J", "linux": "Alt+J" }, "description": "Enable\/disable the selection menu" }, "sendSelectedText": { "suggested_key": { "default": "Alt+C", "mac": "Alt+C", "chromeos": "Alt+C", "linux": "Alt+C" }, "description": "Copy selected text to response window" }, "summarizeArticle": { "suggested_key": { "default": "Alt+S", "mac": "Alt+S", "chromeos": "Alt+S", "linux": "Alt+S" }, "description": "Summarize the web page" } } }