Steam Store Tooltip
Show Steam games information when hovering the store links.
Qu'est-ce que Steam Store Tooltip ?
Steam Store Tooltip est une extension Chrome développée par Gabriel Schulte, et sa fonction principale est "Show Steam games information when hovering the store links.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Steam Store Tooltip
Téléchargez les fichiers d'extension Steam Store Tooltip au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
⚡️ 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
Informations de Base sur l'Extension
Nom | Steam Store Tooltip |
ID | loekhehhklndobiamaakjkefleckboon |
URL Officiel | https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon |
Description | Show Steam games information when hovering the store links. |
Taille du Fichier | 138 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2022-05-24 |
Date de Publication | 2020-01-27 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Gabriel Schulte |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/gabrielmdu/Steam-Store-Tooltip |
URL de la Page d'Aide | https://github.com/gabrielmdu/Steam-Store-Tooltip/issues |
Langues Prises en Charge | 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 } |