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": "Minimal Website Blocker",
"version": "1.0",
"description": "Block websites with a minimal, easy-to-use interface",
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": [
"blocked.html"
],
"matches": [
"<all_urls>"
]
}
]
}