count(text)

count(text)

Shows word and characters count and some other info on any selected text (context menu).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "count(text)",
  "description": "Shows word and characters count and some other info on any selected text (context menu).",
  "version": "2.0.2",
  "permissions": [
    "contextMenus",
    "notifications"
  ],
  "background": {
    "service_worker": "bg.js",
    "type": "module"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "offline_enabled": true,
  "default_locale": "en",
  "content_scripts": []
}