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": "Detoxify", "version": "1.1.0", "description": "Customize your YouTube feed by hiding Shorts and filtering content.", "permissions": [ "scripting", "storage", "tabs" ], "action": { "default_popup": "popup.html" }, "icons": { "16": "detoxify.png", "32": "detoxify.png", "48": "detoxify.png", "128": "detoxify.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "\/shared\/constants.js", "\/shared\/utils.js", "\/shared\/filters.js", "content.js" ] } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "..\/shared\/constants.js", "..\/shared\/utils.js", "..\/shared\/filters.js" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ] }