CS.Money Market

CS.Money Market

The power of CS.Money Market extensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CS.Money Market",
  "description": "The power of CS.Money Market extensions",
  "version": "2.1.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open market"
  },
  "icons": {
    "16": "logo16x16.png",
    "48": "logo48x48.png",
    "128": "logo128x128.png"
  },
  "background": {
    "service_worker": "static/js/serviceWorker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.cs.money/*"
      ],
      "js": [
        "static/js/createExtensionIdentifier.js"
      ]
    },
    {
      "matches": [
        "*://*.steamcommunity.com/id/*/tradehistory*",
        "*://*.steamcommunity.com/profiles/*/tradehistory*"
      ],
      "js": [
        "static/js/tradeHistory.js"
      ],
      "css": [
        "static/css/tradeHistory.css"
      ]
    },
    {
      "matches": [
        "*://*.steamcommunity.com/*/tradeoffers/*"
      ],
      "js": [
        "static/js/tradeOffers.js"
      ],
      "css": [
        "static/css/tradeOffers.css"
      ]
    }
  ],
  "host_permissions": [
    "*://steamcommunity.com/",
    "*://api.steampowered.com/",
    "*://cs.money/",
    "*://steamcommunity-a.akamaihd.net/"
  ],
  "permissions": [
    "cookies",
    "declarativeNetRequest",
    "alarms",
    "notifications",
    "storage"
  ]
}