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 Declutter and Focus",
"version": "3.0.1",
"description": "Selectively remove YouTube's recommended sidebar, video suggestions, user comments, videos on the homepage, ... to stay productive.",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*",
"*:\/\/music.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/music.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"fonts\/*",
"nonstop.js",
"declutter.js",
"styles.css",
"spoilerFilter.js"
],
"matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/music.youtube.com\/*"
]
}
]
}