Character Counter

Character Counter

High-precision character counter for Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.1.0",
  "default_locale": "en",
  "icons": {
    "128": "icons/icon128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup.js",
        "count.js"
      ],
      "css": [
        "popup.css"
      ]
    }
  ],
  "action": {
    "default_title": "Character Counter",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "persistence": false
  }
}