CSGO Stats Rank Tracker

CSGO Stats Rank Tracker

Helps to track wins/loses/ties/KDA stats after rank change on csgostats.gg

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CSGO Stats Rank Tracker",
  "version": "0.1.3",
  "description": "Helps to track wins/loses/ties/KDA stats after rank change on csgostats.gg",
  "author": "Oleksiy Yevtushok",
  "icons": {
    "16": "img/favicon-16x16.png",
    "32": "img/favicon-32x32.png",
    "128": "img/favicon-128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/favicon-16x16.png",
      "32": "img/favicon-32x32.png",
      "128": "img/favicon-128x128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://csgostats.gg/*"
      ],
      "js": [
        "src/import-content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "src/content.js"
      ],
      "matches": [
        "https://csgostats.gg/*"
      ]
    }
  ]
}