Count Words!

Count Words!

This is chrome extension to display the number of words in the current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Count Words!",
  "version": "1.0",
  "manifest_version": 2,
  "description": "This is chrome extension to display the number of words in the current page",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Hello world!"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}