GoogleDocsWordCounter

GoogleDocsWordCounter

A word counter for google docs that will tell you how much have you made so far.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GoogleDocsWordCounter",
  "description": "A word counter for google docs that will tell you how much have you made so far.",
  "version": "1.0.1",
  "icons": {
    "512": "512.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "512.png",
    "default_title": "GDWC is active",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "js/core.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ]
}