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 Blocker - Advanced Content filtering for YouTube",
"version": "4.1",
"description": "Advanced Content Blocking",
"action": {
"default_icon": "icons\/logo.png",
"default_popup": "popup.html"
},
"icons": {
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"channel-list.json"
],
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*\/*"
]
}
],
"options_page": "settings.html",
"background": {
"service_worker": "background.js"
},
"author": "Your Name",
"homepage_url": "https:\/\/github.com\/yourusername\/youtube-brainrot-blocker"
}