Examine source code of TypeBot

Inspect and view changes in TypeBot 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
{
  "manifest_version": 3,
  "name": "TypeBot",
  "version": "1.1",
  "description": "Typing Bot for typeracer.com at a life-saving speed",
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "https://play.typeracer.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://play.typeracer.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "typebot@example.com",
      "strict_min_version": "91.0"
    }
  }
}