Word Counter

Word Counter

Word counter online tool checker to find number of words and characters

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "version": "1.0.1",
  "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>"
      ]
    }
  ]
}