Medium Word Count

Medium Word Count

This extension counts the number of words in a draft post on the site medium.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Medium Word Count",
  "description": "This extension counts the number of words in a draft post on the site medium.com",
  "version": "0.1.6",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://medium.com/*"
      ],
      "css": [
        "css/mediumcount.css"
      ],
      "js": [
        "scripts/jquery-2.0.3.min.js",
        "scripts/mediumcount.js"
      ]
    }
  ],
  "permissions": [
    "history",
    "tabs",
    "https://medium.com/"
  ]
}