Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Apr 21, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SummYT - Free YouTube Summary Generator for ChatGPT", "version": "0.0.2", "description": "Generate free YouTube Summaries with ChatGPT", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/", "*:\/\/*.youtubesummarized.com\/", "*:\/\/*.openai.com\/" ], "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/youtube.com\/*" ], "js": [ "scripts\/youtube\/common.js", "scripts\/youtube\/content-script.js", "scripts\/youtube\/create-summarize-button.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "scripts\/openai\/content-script.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icons\/16x16.png", "32": "images\/icons\/32x32.png", "48": "images\/icons\/48x48.png", "128": "images\/icons\/128x128.png", "256": "images\/icons\/256x256.png", "512": "images\/icons\/512x512.png" }, "web_accessible_resources": [ { "resources": [ "scripts\/youtube\/get-subtitles.js" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ] }, { "resources": [ "styles\/pico.css" ], "matches": [ "<all_urls>" ] }, { "resources": [ "images\/outline-logo.svg" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] }