paragraph Word Count

paragraph Word Count

Select text and rightclick to find out word count and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "paragraph Word Count",
  "description": "Select text and rightclick to find out word count and more",
  "version": "1.1.0.0",
  "manifest_version": 2,
  "author": "Leonidus",
  "homepage_url": "https://hashblox.finders.page/",
  "minimum_chrome_version": "22",
  "offline_enabled": true,
  "icons": {
    "16": "icons/counter16.png",
    "32": "icons/counter32.png",
    "48": "icons/counter48.png",
    "128": "icons/counter128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*/*"
      ],
      "js": [
        "terraform.cs.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}