Available on Game Pass

Available on Game Pass

Know if a game on Steam is also available on Game Pass displaying all platforms where you can play it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Available on Game Pass",
  "description": "Know if a game on Steam is also available on Game Pass displaying all platforms where you can play it",
  "service": "https://xbox-store-api-production.up.railway.app/api",
  "impuestito": "https://impuestito-api-production.up.railway.app/api",
  "version": "1.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://store.steampowered.com/*"
      ],
      "css": [
        "css/styles.css"
      ],
      "js": [
        "scripts/index.js",
        "scripts/page.js",
        "scripts/menu.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  }
}