No Notif Counter

No Notif Counter

Chrome extenstion that removes the notification counter in tab titles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "No Notif Counter",
  "author": "Nigel Davis",
  "description": "Chrome extenstion that removes the notification counter in tab titles",
  "version": "1.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/rsc/imgs/ico16.png",
      "32": "/rsc/imgs/ico32.png",
      "48": "/rsc/imgs/ico48.png",
      "128": "/rsc/imgs/ico128.png"
    }
  },
  "icons": {
    "16": "/rsc/imgs/ico16.png",
    "32": "/rsc/imgs/ico32.png",
    "48": "/rsc/imgs/ico48.png",
    "128": "/rsc/imgs/ico128.png"
  }
}