GeForce Now Lookup
Lookup the compatibility of any game on Steam within the extension
GeForce Now Lookup란 무엇입니까?
GeForce Now Lookup은(는) Malte Koblitz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lookup the compatibility of any game on Steam within the extension"입니다.
확장 프로그램 스크린샷
GeForce Now Lookup 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | GeForce Now Lookup |
ID | oedaacbkfjddgnijckiindmnemogobjl |
공식 URL | https://chromewebstore.google.com/detail/geforce-now-lookup/oedaacbkfjddgnijckiindmnemogobjl |
설명 | Lookup the compatibility of any game on Steam within the extension |
파일 크기 | 1.41 MB |
설치 횟수 | 1,347 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2023-06-13 |
출시 날짜 | 2022-02-12 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | Malte Koblitz |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" } } |