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",
"manifest_version": 3,
"name": "Ad blocker",
"description": "Removes the ads",
"version": "1.0.3",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"incognito": "split",
"action": {
"default_icon": "on.png",
"default_title": "Remove the Ads"
},
"background": {
"service_worker": "bm.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"pm.js"
]
}
],
"permissions": [
"storage"
]
}