Word Counting

Word Counting

Word Counting for selected text using right-click to know counted words.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [],
      "js": [
        "msg.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Word Counting for selected text using right-click to know counted words.",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "manifest_version": 3,
  "name": "Word Counting",
  "offline_enabled": true,
  "permissions": [
    "contextMenus",
    "scripting"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "0.1.2"
}