Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GPT Breeze - ChatGPT AI shortcuts in your current tab & Youtube summary", "description": "An AI extension that allows bring your own key, summarize Youtube and content on the web. AI manages your browser tabs and bookmarks", "version": "1.4.12", "manifest_version": 3, "icons": { "16": "logo.png", "32": "logo.png", "48": "logo.png", "128": "logo.png" }, "host_permissions": [ "https:\/\/*.chatgpt.com\/*", "https:\/\/*.openai.com\/*", "https:\/\/claude.ai\/*", "https:\/\/www.google-analytics.com\/*", "*:\/\/*.youtube.com\/*" ], "permissions": [ "cookies", "storage", "contextMenus", "unlimitedStorage", "webRequest", "declarativeNetRequestWithHostAccess", "sidePanel" ], "optional_permissions": [ "background", "tabs", "history", "bookmarks" ], "optional_host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "action_popup.html" }, "side_panel": { "default_path": "SidePanel.html" }, "declarative_net_request": { "rule_resources": [ { "id": "ruleset", "enabled": true, "path": "rules.json" } ] }, "options_ui": { "page": "popup.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "shared.js", "content-script.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "logo.png", "assets\/logos\/*", "content-script.css" ], "matches": [ "<all_urls>" ] } ], "commands": { "newChat": { "suggested_key": { "default": "Ctrl+J", "mac": "Command+J" }, "description": "Open chat box with AI" }, "summarizePage": { "suggested_key": { "default": "Ctrl+Shift+M", "mac": "Command+Shift+M" }, "description": "SumMarize page to bullet points" }, "polish": { "suggested_key": { "default": "Ctrl+Shift+I", "mac": "Command+Shift+I" }, "description": "Improve writing with AI" }, "openSidePanel": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" }, "description": "Quick access to AI chat options" } } }