Steamify - Faceit stats checker

Steamify - Faceit stats checker

Steamify is a Chrome extension that displays a users detailed stats on FACEIT on their Steam profile.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Steamify - Faceit stats checker",
  "description": "Steamify is a Chrome extension that displays a users detailed stats on FACEIT on their Steam profile.",
  "version": "1.3.1",
  "icons": {
    "16": "images/icon/16.png",
    "32": "images/icon/32.png",
    "64": "images/icon/64.png",
    "128": "images/icon/128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/lvl_1.svg",
        "images/lvl_2.svg",
        "images/lvl_3.svg",
        "images/lvl_4.svg",
        "images/lvl_5.svg",
        "images/lvl_6.svg",
        "images/lvl_7.svg",
        "images/lvl_8.svg",
        "images/lvl_9.svg",
        "images/lvl_10.svg",
        "images/icon/sotsad.png"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://steamcommunity.com/id/*",
        "*://steamcommunity.com/profiles/*"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "css": [
        "css/style.css",
        "css/hwsurvey.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "images/icon/128.png",
    "default_title": "Steamify"
  }
}