Stay focused and boost productivity: Custom blocklist, Scheduled site blocking, and Password protection.
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,
"default_locale": "en",
"description": "__MSG_appDesc__",
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"background": {
"service_worker": "service-worker.js"
},
"icons": {
"16": "public/images/icon16.png",
"32": "public/images/icon32.png",
"48": "public/images/icon48.png",
"128": "public/images/icon128.png"
},
"declarative_net_request": {
"rule_resources": []
},
"action": {
"default_icon": {
"16": "public/images/icon16.png",
"32": "public/images/icon32.png"
},
"default_popup": "public/popup.html"
},
"permissions": [
"tabs",
"declarativeNetRequest",
"storage",
"unlimitedStorage",
"contextMenus",
"notifications",
"webRequest",
"webNavigation",
"cookies",
"scripting",
"alarms",
"idle"
],
"host_permissions": [
"<all_urls>"
],
"version": "6.7.2",
"web_accessible_resources": [
{
"resources": [
"public/*",
"public/images/*"
],
"matches": [
"<all_urls>"
]
}
],
"incognito": "spanning",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"content.js"
]
},
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"checkPageManual.js",
"overlays.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"externally_connectable": {
"matches": [
"https://*.blocksite.co/*"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}