Steam Market History Helper

Steam Market History Helper

Steam Market History Helper helps you manage your market history on steamcommunity.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "background": {
    "scripts": [
      "./background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/icons/icon_19.png",
      "38": "assets/icons/icon_38.png"
    },
    "default_popup": "./popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "./content_scripts/listings.js"
      ],
      "matches": [
        "*://steamcommunity.com/market/listings/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": false,
      "js": [
        "./content_scripts/market.js"
      ],
      "matches": [
        "*://steamcommunity.com/market/?smhh=*"
      ],
      "exclude": [
        "*://steamcommunity.com/market/listings/?smhh=true*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": false,
      "js": [
        "./content_scripts/index.js"
      ],
      "matches": [
        "*://steamcommunity.com/market/?smhh=true&index=*&row=*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "assets/icons/icon_16.png",
    "32": "assets/icons/icon_32.png",
    "64": "assets/icons/icon_64.png",
    "128": "assets/icons/icon_128.png"
  },
  "options_page": "./options.html",
  "permissions": [
    "*://*.steamcommunity.com/market/listings/*/*",
    "*://*.steamcommunity.com/market/",
    "*://*.steamcommunity.com/market/myhistory/render*",
    "cookies",
    "notifications",
    "storage"
  ],
  "web_accessible_resources": [
    "data/*.json",
    "assets/*.js",
    "assets/*.svg",
    "assets/icons/*"
  ],
  "version": "1.3.2"
}