What's My Word Count

What's My Word Count

Tells you how many words you type in a day!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "What's My Word Count",
  "description": "Tells you how many words you type in a day!",
  "version": "0.0.0.8",
  "icons": {
    "16": "19.png",
    "48": "48.png",
    "128": "128.png"
  },
  "browser_action": {
    "default_icon": "19.png",
    "default_popup": "popup.html",
    "default_title": "Options"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "jquery.js",
        "wordCounter.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}