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", "name": "Summyz \u2013 YouTube Video Summarizer", "version": "1.0.8.1", "description": "Save time and skip the fluff \u2014 Summyz transforms YouTube videos into clear, timestamped summaries for faster, smarter viewing.", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "index.html", "default_title": "Summyz", "default_icon": { "16": "logo-mini.png", "48": "logo-mini.png", "128": "logo-mini.png" } }, "content_scripts": [ { "matches": [ "*:\/\/localhost\/*", "*:\/\/*.summyz.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/*.chatgpt.com\/*" ], "js": [ "script.js" ] } ], "host_permissions": [ "*:\/\/localhost\/*", "*:\/\/*.summyz.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/*.chatgpt.com\/*" ], "web_accessible_resources": [ { "resources": [ "inject.js", "assets\/*", "dist\/*" ], "matches": [ "*:\/\/localhost\/*", "*:\/\/*.summyz.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/*.chatgpt.com\/*" ] } ], "permissions": [ "scripting", "activeTab", "storage" ] }