Tally Word Counter

Tally Word Counter

Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tally Word Counter",
  "short_name": "Tally",
  "description": "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.",
  "version": "1.1",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "manifest_version": 2
}