Social media blocker

Social media blocker

Social media blocker is an extension which will not allow you to use social media websites while working with warning.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Social media blocker",
  "description": "Social media blocker is an extension which will not allow you to use social media websites while working with warning.",
  "version": "1.0",
  "icons": {
    "16": "./assets/icon.png",
    "48": "./assets/icon.png",
    "128": "./assets/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}