Inspect and view changes in Web Blocker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Web Blocker",
"version": "1.1",
"description": "Blocks specified websites.",
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"16": "icons/webBlocker 16x16.png",
"32": "icons/webBlocker 32x32.png",
"128": "icons/webBlocker 128x128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}