Steam Store Tooltip

Show Steam games information when hovering the store links.

¿Qué es Steam Store Tooltip?

Steam Store Tooltip es una extensión de Chrome desarrollada por Gabriel Schulte, y su función principal es "Show Steam games information when hovering the store links.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Steam Store Tooltip

Descarga archivos de extensión Steam Store Tooltip 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

                        ⚡️ 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                    

Información Básica de la Extensión

Nombre Steam Store Tooltip Steam Store Tooltip
ID loekhehhklndobiamaakjkefleckboon
URL Oficial https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon
Descripción Show Steam games information when hovering the store links.
Tamaño del Archivo 138 KB
Cantidad de Instalaciones 34
Versión Actual 1.2.0
Última Actualización 2022-05-24
Fecha de Publicación 2020-01-27
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Gabriel Schulte
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/gabrielmdu/Steam-Store-Tooltip
URL de la Página de Ayuda https://github.com/gabrielmdu/Steam-Store-Tooltip/issues
Idiomas Soportados 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
}