Block websites to increase productivity.
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": "Social Silence II",
"version": "1.0",
"description": "Block websites to increase productivity.",
"permissions": [
"webRequest",
"webRequestBlocking",
"storage"
],
"icons": {
"48": "social-silence-ii.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "social-silence-ii.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}