CS Accounts Extension

CS Accounts Extension

csaccounts.com extension to view CS accounts in steam profile page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CS Accounts Extension",
  "description": "csaccounts.com extension to view CS accounts in steam profile page",
  "version": "1.1.0",
  "action": {
    "default_icon": {
      "16": "icon-16x16.png",
      "32": "icon-32x32.png",
      "48": "icon-32x32.png",
      "128": "icon-32x32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.steamcommunity.com/id/*",
        "*://*.steamcommunity.com/profiles/*"
      ],
      "exclude_matches": [
        "*://*.steamcommunity.com/id/*/allcomments*",
        "*://*.steamcommunity.com/profiles/*/allcomments*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "host_permissions": [
    "https://csaccounts.com/api/*"
  ]
}