Daily Typer

Daily Typer

Know your real typing speed in everyday typing activities.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Daily Typer",
  "version": "2.0",
  "description": "Know your real typing speed in everyday typing activities.",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "Daily TyperN.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  }
}