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": "Control Your Feed \u2013 Remove YouTube Distractions",
"version": "2.2.0",
"description": "Control YouTube's feed & related videos, remove shorts, comments, sidebar, top navigation bar, and other distractions.",
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"minimum_chrome_version": "92",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"run_at": "document_end",
"js": [
"content.js"
]
}
],
"icons": {
"128": "icon128.png"
},
"action": {
"default_icon": "icon128.png",
"default_title": "Remove YouTube Distractions",
"default_popup": "popup.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}