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",
"name": "Channel Block List for Youtube",
"description": "Block distracting Youtube Channels",
"version": "2.1.9",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"options_page": "index.html",
"icons": {
"128": "new_128x128_logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"contentScript.js"
],
"all_frames": true
}
],
"permissions": [
"storage",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"tabs",
"notifications"
],
"action": {
"default_popup": "index.html"
}
}