Typing Statistics | Auto Typer

Typing Statistics | Auto Typer

Typing Statistics: Tracks WPM and other Statistics as well as auto typer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "name": "Typing Statistics | Auto Typer",
  "version": "3.4.5",
  "manifest_version": 3,
  "description": "Typing Statistics: Tracks WPM and other Statistics as well as auto typer",
  "author": "Marsss' Dev Team",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/contentScript.js"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "/scripts/ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "/scripts/background.js"
  },
  "action": {
    "default_popup": "/popup/popup.html"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-64.png",
    "128": "assets/icon-128.png"
  }
}