FACEIT+

FACEIT+

Отображение статистики карт игроков в комнате матча

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FACEIT+",
  "description": "Отображение статистики карт игроков в комнате матча",
  "version": "1.2",
  "manifest_version": 2,
  "author": "NF",
  "browser_action": {
    "default_title": "Faceit+",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.faceit.com/*/csgo/room/*"
      ],
      "exclude_matches": [
        "https://www.faceit.com/*/csgo/room/*/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_end"
    }
  ]
}