GeForce Now Lookup

Lookup the compatibility of any game on Steam within the extension

Was ist GeForce Now Lookup?

GeForce Now Lookup ist eine Chrome-Erweiterung, die von Malte Koblitz entwickelt wurde, und ihr Hauptmerkmal ist "Lookup the compatibility of any game on Steam within the extension".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

GeForce Now Lookup-Erweiterungs-CRX-Datei herunterladen

Laden Sie GeForce Now Lookup-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

                        Features
✅  See the compatibility of the current Game directly on the extension icon
✅  Search for all supported game on GeForce Now within the extension (popup menu)
✅  Clean design and looks integrated into Steam itself
✅  Allows you to see the compatibility of various games on the Steam Store

Version 1.1.0
- Updated Popup menu
  • Improved the design
  • Added a "Start Game" button for each Game
  • Enhanced the display of the game list
- Optimized the core of the extension for better stability and performance
- Increased support for additional steam pages                    

Grundlegende Informationen zur Erweiterung

Name GeForce Now Lookup GeForce Now Lookup
ID oedaacbkfjddgnijckiindmnemogobjl
Offizielle URL https://chromewebstore.google.com/detail/geforce-now-lookup/oedaacbkfjddgnijckiindmnemogobjl
Beschreibung Lookup the compatibility of any game on Steam within the extension
Dateigröße 1.41 MB
Installationsanzahl 1,347
Aktuelle Version 1.1.0
Letztes Update 2023-06-13
Veröffentlichungsdatum 2022-02-12
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler Malte Koblitz
E-Mail gfn-lookup@maltekoblitz.de
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GeForce Now Lookup",
    "version": "1.1.0",
    "description": "Lookup the compatibility of any game on Steam within the extension",
    "manifest_version": 3,
    "icons": {
        "128": "icon_128-active.png"
    },
    "action": {
        "default_icon": "icon_128.png",
        "default_title": "GeForce Now Lookup",
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/steamcommunity.com\/*",
        "https:\/\/store.steampowered.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/store.steampowered.com\/*",
                "https:\/\/steamcommunity.com\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}