Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove YouTube Shorts", "version": "2.1.2", "description": "Removes YouTube Shorts and prevents you from wasting your precious time.", "icons": { "128": "icon128.png" }, "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "permissions": [ "storage" ], "background": { "service_worker": "background.js", "type": "module" }, "minimum_chrome_version": "92", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end", "js": [ "content.js" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } ], "action": { "default_icon": "icon128.png", "default_title": "Remove Youtube Shorts", "default_popup": "popup.html" } }