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ファイルをダウンロード
Steam Store Tooltip拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
⚡️ 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 |
Eメール | [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 } |