Steam Profile Sidebar

Steam Profile Sidebar

Adds Steam64ID, Accountid, Add button and Faceit data to sidebar on Steam profiles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Steam Profile Sidebar",
  "version": "0.0.1",
  "description": "Adds Steam64ID, Accountid, Add button and Faceit data to sidebar on Steam profiles",
  "manifest_version": 2,
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://steamcommunity.com/id/*",
        "https://steamcommunity.com/profiles/*"
      ],
      "run_at": "document_end",
      "js": [
        "main.js"
      ]
    }
  ],
  "icons": {
    "128": "logo_128.png",
    "256": "logo_256.png",
    "512": "logo_512.png",
    "1000": "logo_1000.png"
  }
}