Steam Currency Converter

Steam Currency Converter

Seamlessly Convert Steam Prices to Local Currency!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Steam Currency Converter",
  "description": "Seamlessly Convert Steam Prices to Local Currency!",
  "version": "1.0.2",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "src/assets/icons/icon16.png",
    "32": "src/assets/icons/icon32.png",
    "48": "src/assets/icons/icon48.png",
    "128": "src/assets/icons/icon128.png"
  },
  "action": {
    "default_popup": "./src/pages/index.html",
    "default_icon": "src/assets/icons/icon128.png"
  },
  "background": {
    "service_worker": "./src/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://store.steampowered.com/*",
        "*://steamcommunity.com/*"
      ],
      "exclude_matches": [
        "*://store.steampowered.com/login/*",
        "*://store.steampowered.com/join/*",
        "*://store.steampowered.com/logout/*",
        "*://steamcommunity.com/logout/*",
        "*://steamcommunity.com/login/*",
        "*://checkout.steampowered.com/*"
      ],
      "js": [
        "./src/utils/api.js",
        "./src/data/currencies.js",
        "./src/data/locales.js",
        "./src/data/constants.js",
        "./src/data/globals.js",
        "./src/data/selectors.js",
        "./src/utils/observers.js",
        "./src/utils/helpers.js",
        "./src/utils/price.js",
        "./src/utils/dom.js",
        "./src/utils/parsers.js",
        "./src/scripts/store.script.js",
        "./src/scripts/init.script.js",
        "./src/scripts/changelog.script.js"
      ],
      "css": [
        "./src/pages/styles/store.style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/assets/*"
      ],
      "matches": [
        "*://store.steampowered.com/*",
        "*://steamcommunity.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://store.steampowered.com/*"
  ]
}