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": "YouTube Video AI Summary - AI by ChatGPT, Claude & Gemini (Unlimited)", "version": "1.1", "description": "Summarize YouTube Videos Unlimited with ChatGPT, Claude & Gemini.", "permissions": [ "activeTab", "scripting", "clipboardRead", "clipboardWrite", "storage" ], "host_permissions": [ "https:\/\/*.youtube.com\/*", "https:\/\/*.claude.ai\/*", "https:\/\/chatgpt.com\/*", "https:\/\/*.google.com\/*" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_title": "Open Options" }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "commands": { "run-extension": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Run YouTube Video Summarizer" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "rating.js", "modal.js", "content.js" ], "run_at": "document_idle" } ] }