Word Count

Word Count

Count the words in a selection

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Word Count",
  "description": "Count the words in a selection",
  "version": "0.1",
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  }
}