GeForce Now Lookup
Lookup the compatibility of any game on Steam within the extension
¿Qué es GeForce Now Lookup?
GeForce Now Lookup es una extensión de Chrome desarrollada por Malte Koblitz, y su función principal es "Lookup the compatibility of any game on Steam within the extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GeForce Now Lookup
Descarga archivos de extensión GeForce Now Lookup en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | GeForce Now Lookup |
ID | oedaacbkfjddgnijckiindmnemogobjl |
URL Oficial | https://chromewebstore.google.com/detail/geforce-now-lookup/oedaacbkfjddgnijckiindmnemogobjl |
Descripción | Lookup the compatibility of any game on Steam within the extension |
Tamaño del Archivo | 1.41 MB |
Cantidad de Instalaciones | 1,347 |
Versión Actual | 1.1.0 |
Última Actualización | 2023-06-13 |
Fecha de Publicación | 2022-02-12 |
Calificación | 4.50/5 Total de 2 Calificaciones |
Desarrollador | Malte Koblitz |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |