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": "Free AI YouTube Summary & Transcripts", "version": "1.0.0", "description": "Get video summaries and transcripts with AI.", "icons": { "16": "assets\/icon_16x16.png", "48": "assets\/icon_48x48.png", "128": "assets\/icon_128x128.png" }, "action": { "default_title": "Free AI YouTube Summary & Transcripts", "default_icon": { "16": "assets\/icon_16x16.png", "48": "assets\/icon_48x48.png", "128": "assets\/icon_128x128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "src\/contentScript.js" ], "css": [ "src\/styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/chatgpt.com\/*" ], "js": [ "loaders\/loader-chatgpt.js" ], "css": [ "style.css" ] }, { "matches": [ "https:\/\/claude.ai\/*" ], "js": [ "loaders\/loader-claude.js" ], "css": [ "style.css" ] }, { "matches": [ "https:\/\/gemini.google.com\/*" ], "js": [ "loaders\/loader-gemini.js" ], "css": [ "style.css" ] }, { "matches": [ "https:\/\/www.perplexity.ai\/*" ], "js": [ "loaders\/loader-perplexity.js" ], "css": [ "style.css" ] }, { "matches": [ "https:\/\/chat.mistral.ai\/*" ], "js": [ "loaders\/loader-mistral.js" ], "css": [ "style.css" ] }, { "matches": [ "https:\/\/grok.com\/*" ], "js": [ "loaders\/loader-grok.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ { "resources": [ "injector.js", "style.css" ], "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/chatgpt.com\/*", "https:\/\/claude.ai\/*", "https:\/\/gemini.google.com\/*", "https:\/\/www.perplexity.ai\/*", "https:\/\/chat.mistral.ai\/*", "https:\/\/grok.com\/*" ] }, { "resources": [ "src\/page\/summarizer.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/api.gumroad.com\/*" ] }