Word count checker

Word count checker

Word Counter online tool lets you count the total number of words and characters of any text document. Best word count checker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Word count checker",
  "version": "1.0.1",
  "description": "Word Counter online tool lets you count the total number of words and characters of any text document. Best word count checker.",
  "icons": {
    "16": "icon16.png",
    "48": "icon64.png",
    "128": "icon128.png"
  },
  "action": {
    "deafult_icon": "icon64.png",
    "default_title": "Word count checker",
    "default_popup": "popup.html"
  },
  "content_security_policy": {
    "extension_page": "default-src 'self'"
  },
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "Logofile.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}