Examine source code of Count Words

Inspect and view changes in Count Words source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Count Words",
  "version": "1.0.1",
  "description": "Chrome browser extension that allows you to quickly get words statistic on page or selected text.",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "offline_enabled": true,
  "background": {
    "service_worker": "js/background.js"
  },
  "options_ui": {
    "page": "js/options.html"
  },
  "action": {
    "default_icon": "images/icon48.png",
    "default_popup": "js/popup.html"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "tabs",
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "js/contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}