SteamBoosterPackHelper

SteamBoosterPackHelper

Quickly open and create all your steam trading card booster packs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SteamBoosterPackHelper",
  "version": "1.0.3",
  "description": "Quickly open and create all your booster packs.",
  "icons": {
    "48": "icons/icon.png"
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.steamcommunity.com/id/*/inventory/",
        "*://*.steamcommunity.com/id/*/inventory"
      ],
      "js": [
        "OpenBoosters.js"
      ]
    },
    {
      "matches": [
        "*://*.steamcommunity.com/tradingcards/boostercreator",
        "*://*.steamcommunity.com/tradingcards/boostercreator/*"
      ],
      "js": [
        "MakeBoosters.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "72.0"
    }
  }
}