Examine source code of Яeverse Word Count

Inspect and view changes in Яeverse Word Count 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",
  "name": "Яeverse Word Count",
  "version": "0.10",
  "description": "Яeverse the word count on Google Docs",
  "manifest_version": 2,
  "permissions": [
    "https://docs.Google.com/*",
    "input"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "browser_action": {
    "default_popup": "code/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.Google.com/*"
      ],
      "js": [
        "code/inject.js"
      ]
    }
  ]
}