Nitro Type stats on race page viewer

Nitro Type stats on race page viewer

Easily access info from the Nitro Type stats page on the race page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nitro Type stats on race page viewer",
  "description": "Easily access info from the Nitro Type stats page on the race page",
  "version": "1.2",
  "manifest_version": 2,
  "icons": {
    "16": "forstats16.png",
    "48": "forstats48.png",
    "128": "forstats128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.nitrotype.com/*"
      ],
      "js": [
        "content.js",
        "popup.js"
      ],
      "css": [
        "fix.css"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Nitro Type cars cursor"
  }
}