Social media controller

Social media controller

This handy extension will save your time by controlling the time you spend on websites. It allows you to enter a list of websites…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Social media controller",
  "version": "3",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "well.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "well.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "redirect.js"
      ]
    }
  ]
}