Battlefield 4 True Player Count

Battlefield 4 True Player Count

Shows the true player count for Battlefield 4 servers listed on Battlelog

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Battlefield 4 True Player Count",
  "description": "Shows the true player count for Battlefield 4 servers listed on Battlelog",
  "version": "0.0.0.3",
  "permissions": [
    "https://battlelog.battlefield.com/bf4/servers*"
  ],
  "browser_action": {
    "default_icon": "Img/ExtLogo-16x16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://battlelog.battlefield.com/bf4/servers*"
      ],
      "js": [
        "getPlayerCount.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "Img/ExtLogo-16x16.png",
    "32": "Img/ExtLogo-32x32.png",
    "48": "Img/ExtLogo-48x48.png",
    "128": "Img/ExtLogo-128x128.png"
  },
  "manifest_version": 2
}