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": "UTubeFilter: Block Channels, Shorts & Watched",
"version": "1.2.0",
"description": "Block\/hide search results and Shorts from channels you blacklist on YouTube.",
"permissions": [
"storage",
"scripting",
"activeTab",
"tabs"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_idle"
}
]
}