LMAA - Leave me absolutely alone

LMAA - Leave me absolutely alone

Browser extension that prevents sites from changing the favicon or tab title to distract you and get your attention

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LMAA - Leave me absolutely alone",
  "version": "1.0.1",
  "author": "Simon Frey",
  "description": "Browser extension that prevents sites from changing the favicon or tab title to distract you and get your attention",
  "homepage_url": "https://github.com/simonfrey/LMAA-Leave-me-absolutely-alone-web-extensions",
  "icons": {
    "48": "icons/shield_48.png",
    "96": "icons/shield_96.png",
    "128": "icons/shield_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/leave_alone.js"
      ]
    }
  ]
}