Word Counter - Character/Word Counting Stats

Word Counter - Character/Word Counting Stats

Count number of Characters/Letters/Words with one-click. Right-click context menu to count Words/Letters/Characters of selected text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extNameFull__",
  "short_name": "__MSG_extName__",
  "version": "0.1.0",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "res/icons/logo_16.png",
      "48": "res/icons/logo_48.png",
      "128": "res/icons/logo_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "res/icons/logo_16.png",
    "48": "res/icons/logo_48.png",
    "128": "res/icons/logo_128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "author": "Oziku Technologies LLC",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}