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": "AdBlocker Expert",
"version": "1.0.0",
"description": "Removes ads with style - watch them shake and disappear!",
"permissions": [
"storage",
"scripting",
"activeTab",
"declarativeNetRequest",
"alarms",
"webRequest"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon_16.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
}
},
"content_scripts": [
{
"all_frames": true,
"run_at": "document_start",
"css": [
"style.css"
],
"js": [
"contentScript.js"
],
"matches": [
"<all_urls>"
],
"match_about_blank": true
}
],
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": [
"adSelectors.json"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"icons\/icon_16.png",
"icons\/icon_32.png",
"icons\/icon_48.png",
"icons\/icon_128.png",
"timing.js"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons\/icon_16.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "fair_ruleset_0",
"enabled": true,
"path": "rules\/fair.json"
},
{
"id": "fair_ruleset_1",
"enabled": true,
"path": "rules\/fair1.json"
}
]
}
}