Steam Store Tooltip
Show Steam games information when hovering the store links.
Steam Store Tooltip란 무엇입니까?
Steam Store Tooltip은(는) Gabriel Schulte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show Steam games information when hovering the store links."입니다.
확장 프로그램 스크린샷
Steam Store Tooltip 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
⚡️ Quickly see all the relevant game's info in a tooltip: ▫️ price and discount ▫️ screenshots ▫️ categories ▫️ reviews positive rating ▫️ wishlisted or owned game (available if you're logged in on the browser) ▫️ description ▫️ release date ▫️ platforms ▫️ user tags ⚡️ Choose the store language ⚡️ Choose the store currency (available if you're not logged in on the browser) ⚡️ Activate the tooltip with a chosen key ⭐️ Free and open source
확장 프로그램 기본 정보
이름 | Steam Store Tooltip |
ID | loekhehhklndobiamaakjkefleckboon |
공식 URL | https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon |
설명 | Show Steam games information when hovering the store links. |
파일 크기 | 138 KB |
설치 횟수 | 34 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2022-05-24 |
출시 날짜 | 2020-01-27 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Gabriel Schulte |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/gabrielmdu/Steam-Store-Tooltip |
도움말 페이지 URL | https://github.com/gabrielmdu/Steam-Store-Tooltip/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam Store Tooltip", "version": "1.2.0", "description": "Show Steam games information when hovering the store links.", "homepage_url": "https:\/\/github.com\/gabrielmdu\/Steam-Store-Tooltip", "permissions": [ "storage", "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "*:\/\/store.steampowered.com\/*" ], "css": [ "font\/fonts.css" ], "js": [ "js\/steamstoretooltip.js" ], "run_at": "document_idle" } ], "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_page": "html\/options.html", "web_accessible_resources": [ { "resources": [ "font\/*.woff" ], "matches": [ "*:\/\/*\/*" ] } ], "manifest_version": 3 } |