Word Count

Word Count

Counts the words in the document selection and text entry.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Word Count",
  "version": "0.4",
  "author": "Shawn Hoover",
  "manifest_version": 2,
  "description": "Counts the words in the document selection and text entry.",
  "icons": {
    "64": "logo64.png",
    "128": "logo128.png"
  },
  "permissions": [
    "tabs"
  ],
  "page_action": {
    "default_title": "Word Count"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}