Easy Character Counter

Easy Character Counter

count string

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.0.2",
  "manifest_version": 3,
  "default_locale": "en",
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "64": "img/icon_64.png",
    "128": "img/icon_128.png",
    "512": "img/icon_512.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "css/contents.css"
      ],
      "js": [
        "plugin/jquery.min.js",
        "js/contents.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "web_accessible_resources": [
    {
      "resources": [
        "img/close_w.svg"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}