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": "Focus Tube", "version": "0.0.1", "manifest_version": 3, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "activeTab", "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" } }