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": "justTLDR: Free AI Summarizer for YouTube and Web", "version": "2.0.21", "description": "Instantly summarize webpages or YouTube video using your existing AI accounts (ChatGPT, etc) - no additional subscription required!", "permissions": [ "activeTab", "storage" ], "host_permissions": [ "https:\/\/claude.ai\/*", "https:\/\/chatgpt.com\/*", "https:\/\/gemini.google.com\/*", "https:\/\/chat.deepseek.com\/*", "https:\/\/grok.com\/*" ], "options_page": "src\/entries\/options\/index.html", "icons": { "48": "assets\/icons\/icon48.png" }, "action": { "default_icon": { "48": "assets\/icons\/icon48.png" } }, "content_scripts": [ { "matches": [ "<all_urls>" ], "exclude_matches": [ "https:\/\/*.google.com\/*", "https:\/\/*.brave.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "webSummarizer.js" ] }, { "matches": [ "https:\/\/claude.ai\/*", "https:\/\/chatgpt.com\/*", "https:\/\/gemini.google.com\/*", "https:\/\/chat.deepseek.com\/*", "https:\/\/grok.com\/*" ], "js": [ "aiPasteHandler.js" ] }, { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "youtubeSummarizer.css" ], "js": [ "youtubeSummarizer.js" ] }, { "matches": [ "*:\/\/*.youtube.com\/embed\/*", "*:\/\/*.youtube-nocookie.com\/embed\/*" ], "js": [ "embedOverlayRemover.js" ], "all_frames": true, "run_at": "document_idle" } ], "background": { "service_worker": "background.js", "type": "module" } }