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": "Simple Website Blocker",
"description": "Block the websites that steal your focus, and improve your productivity.",
"version": "0.0.1",
"icons": {
"16": "icon16.png",
"24": "icon24.png",
"32": "icon32.png",
"64": "icon64.png",
"128": "icon128.png"
},
"options_ui": {
"page": "options.html"
},
"action": {
"default_icon": {
"16": "icon16.png",
"24": "icon24.png",
"32": "icon32.png",
"64": "icon64.png",
"128": "icon128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js\/vendor.js",
"js\/content_script.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
]
}