Available on Game Pass
Know if a game on Steam is also available on Game Pass displaying all platforms where you can play it
Was ist Available on Game Pass?
Available on Game Pass ist eine Chrome-Erweiterung, die von lucasromerodb entwickelt wurde, und ihr Hauptmerkmal ist "Know if a game on Steam is also available on Game Pass displaying all platforms where you can play it".
Erweiterungsscreenshots
Available on Game Pass-Erweiterungs-CRX-Datei herunterladen
Laden Sie Available on Game Pass-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension shows a Game Pass banner on a game store page on Steam
- Available games
- Ultimate / EAPlay games
- Upcoming games
- Leaving games
Follow me on https://twitter.com/lukekix_gg to get all updates about this extension.
Release notes: https://lucasromerodb.notion.site/Available-on-Game-Pass-notes-0a1105a741c4454a99fb5d9927f6950d Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ogkbpenenponleoakeomjjddhjbgdadc |
| Offizielle URL | https://chromewebstore.google.com/detail/available-on-game-pass/ogkbpenenponleoakeomjjddhjbgdadc |
| Beschreibung | Know if a game on Steam is also available on Game Pass displaying all platforms where you can play it |
| Dateigröße | 121 KB |
| Installationsanzahl | 9,508 |
| Aktuelle Version | 1.5 |
| Letztes Update | 2023-12-03 |
| Veröffentlichungsdatum | 2022-11-01 |
| Bewertung | 4.11/5 Insgesamt 19 Bewertungen |
| Entwickler | lucasromerodb |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://twitter.com/lukekix_gg |
| Unterstützte Sprachen | en-US |
| 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"
}
} | |