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 Shorts Tools", "version": "1.0", "description": "Tools for YouTube Shorts", "permissions": [ "activeTab", "storage", "tabs", "scripting" ], "host_permissions": [ "*:\/\/www.youtube.com\/shorts\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "ico16.png", "32": "ico32.png", "48": "ico48.png", "64": "ico64.png", "128": "ico128.png", "256": "ico256.png" } }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/shorts\/*" ], "js": [ "clearPlay.js", "autoPlay.js", "alwaysShowComments.js", "content.js" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" } }