Steam Store Tooltip
Show Steam games information when hovering the store links.
Cos'è Steam Store Tooltip?
Steam Store Tooltip è un'estensione di Chrome sviluppata da Gabriel Schulte, e la sua funzione principale è "Show Steam games information when hovering the store links.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Steam Store Tooltip
Scarica i file di estensione Steam Store Tooltip in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        ⚡️ 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                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | loekhehhklndobiamaakjkefleckboon | 
| URL Ufficiale | https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon | 
| Descrizione | Show Steam games information when hovering the store links. | 
| Dimensione del File | 138 KB | 
| Conteggio Installazioni | 34 | 
| Versione Corrente | 1.2.0 | 
| Ultimo Aggiornamento | 2022-05-24 | 
| Data di Pubblicazione | 2020-01-27 | 
| Valutazione | 5.00/5 Totale 1 Valutazioni | 
| Sviluppatore | Gabriel Schulte | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/gabrielmdu/Steam-Store-Tooltip | 
| URL della Pagina di Aiuto | https://github.com/gabrielmdu/Steam-Store-Tooltip/issues | 
| Lingue Supportate | 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
}  |  |