Message Counter for Gmail™

Message Counter for Gmail™

Shows the mail count of the conversation next to the scrollbar in Gmail™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.3.4",
  "manifest_version": 3,
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon-128.png",
    "48": "img/icon-128.png",
    "128": "img/icon-128.png"
  },
  "author": "Jacob „kurtextrem\" Groß",
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "minimum_chrome_version": "88",
  "host_permissions": [
    "*://mail.google.com/*"
  ]
}