Word Counter

Word Counter

Counting the amount of a given word in the current page

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Counting the amount of a given word in the current page",
  "icons": {
    "128": "logo.png"
  },
  "action": {
    "default_icon": "logo.png",
    "default_title": "Word Counter",
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "name": "Word Counter",
  "version": "1",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}