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": "ZeroAds - Block All Ads, Instantly",
"version": "1.0.5",
"description": "Blocks ads, pop-ups, and tracking scripts across websites for a cleaner browsing experience.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"permissions": [
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "youtube_ads",
"enabled": true,
"path": "rules\/youtube_ads.json"
},
{
"id": "google_ads",
"enabled": true,
"path": "rules\/google_ads.json"
},
{
"id": "third_party_ads",
"enabled": true,
"path": "rules\/third_party_ads.json"
},
{
"id": "tracking_scripts",
"enabled": true,
"path": "rules\/tracking_scripts.json"
},
{
"id": "popups_notifications",
"enabled": true,
"path": "rules\/popups_notifications.json"
}
]
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles\/content.css"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content-generic.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"rules\/*.json",
"inject.js",
"web_accessible_resources\/google-ima.js"
],
"matches": [
"<all_urls>"
]
}
]
}