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": "Adblock Blocker Blocker",
"version": "0.5",
"description": "Block those pesky adblock blockers!",
"author": "tekshteint",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "service_worker.js"
},
"web_accessible_resources": [
{
"resources": [
"content.js"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_popup": "popup.html"
},
"content_security_policy": []
}