Steamlvlup Card Factory

Steamlvlup Card Factory

Improves your interaction with your Trading Cards, game Badges and Steam profile level. Official Web Extension by Steamlvlup.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Steamlvlup Card Factory",
  "version": "2.0.4",
  "description": "__MSG_extension_description__",
  "short_name": "SCF",
  "default_locale": "en",
  "background": {
    "service_worker": "script/background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "offscreen"
  ],
  "host_permissions": [
    "*://steamcommunity.com/*",
    "*://*.steampowered.com/*",
    "*://api.steamlvlup.com/*",
    "*://steamlvlup.com/*",
    "*://extension.steamlvlup.com/*",
    "*://store.steampowered.com/app/*",
    "*://store.steampowered.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://steamcommunity.com/*",
      "*://steamlvlup.com/extension/bonus",
      "*://store.steampowered.com/app/*",
      "*://store.steampowered.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://steamcommunity.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/settings.js"
      ]
    },
    {
      "matches": [
        "*://store.steampowered.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/settings.js"
      ]
    },
    {
      "matches": [
        "*://store.steampowered.com/app/*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/settings.js",
        "script/gameCache.js",
        "script/inGame.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/id/*/inventory",
        "*://steamcommunity.com/id/*/inventory/*",
        "*://steamcommunity.com/profiles/*/inventory",
        "*://steamcommunity.com/profiles/*/inventory/*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/inventoryCache.js",
        "script/inInventory.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/id/*/tradeoffers/*",
        "*://steamcommunity.com/id/*/tradeoffers",
        "*://steamcommunity.com/profiles/*/tradeoffers",
        "*://steamcommunity.com/profiles/*/tradeoffers/*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/inTrade.js",
        "script/tradeController.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/tradeoffer/*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/inTradeOffer.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/tradeoffer/*"
      ],
      "run_at": "document_start",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/TradeOfferPaint.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/id/*/badges/*",
        "*://steamcommunity.com/profiles/*/badges/*",
        "*://steamcommunity.com/id/*/badges*",
        "*://steamcommunity.com/profiles/*/badges*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/inBadges.js"
      ]
    },
    {
      "matches": [
        "*://steamlvlup.com/extension/bonus"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/inBonus.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/chat/*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/inDropCards.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/tradingcards/boostercreator/*",
        "*://steamcommunity.com//tradingcards/boostercreator/*",
        "*://steamcommunity.com//tradingcards/boostercreator*",
        "*://steamcommunity.com/tradingcards/boostercreator*"
      ],
      "run_at": "document_end",
      "css": [
        "style/style.css"
      ],
      "js": [
        "script/helper.js",
        "script/booster.js"
      ]
    }
  ],
  "action": {
    "default_title": "Steamlvlup Card Factory",
    "default_icon": "icons/logo.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icons/logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "_locales/*",
        "style/style.css",
        "script/content.js",
        "script/helper.js",
        "script/settings.js",
        "script/*.js",
        "icons/*",
        "sound/*"
      ],
      "matches": [
        "*://steamcommunity.com/*",
        "*://*.steampowered.com/*",
        "*://api.steamlvlup.com/*",
        "*://steamlvlup.com/*",
        "*://extension.steamlvlup.com/*",
        "*://store.steampowered.com/*"
      ]
    }
  ]
}