Bots4 Statistics

Bots4 Statistics

Replaces the logo with some useful statistics (xp per hour, number of trains until level up etc.)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bots4 Statistics",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "Replaces the logo with some useful statistics (xp per hour, number of trains until level up etc.)",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://bots4.net/*",
        "http://www.bots4.net/*"
      ],
      "js": [
        "statistics.js"
      ],
      "css": [
        "statistics.css"
      ],
      "run_at": "document_end"
    }
  ]
}