Word Counter

Word Counter

A lite tool for counting characters and words via context-menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.1.2resigned1",
  "manifest_version": 2,
  "name": "Word Counter",
  "short_name": "wordcounttl",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "page": "lib/chrome/background.html"
  },
  "homepage_url": "http://mybrowseraddon.com/word-counter.html",
  "description": "A lite tool for counting characters and words with right-click",
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "data/content_script/inject.js"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{91164e40-3de8-4619-a381-3cc95b083c5b}"
    }
  }
}