Steam Store Tooltip

Show Steam games information when hovering the store links.

O que é Steam Store Tooltip?

Steam Store Tooltip é uma extensão do Chrome desenvolvida por Gabriel Schulte, e sua principal característica é "Show Steam games information when hovering the store links.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Steam Store Tooltip

Baixe arquivos de extensão Steam Store Tooltip no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Steam Store Tooltip Steam Store Tooltip
ID loekhehhklndobiamaakjkefleckboon
URL Oficial https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon
Descrição Show Steam games information when hovering the store links.
Tamanho do Arquivo 138 KB
Contagem de Instalações 34
Versão Atual 1.2.0
Última Atualização 2022-05-24
Data de Publicação 2020-01-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Gabriel Schulte
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gabrielmdu/Steam-Store-Tooltip
URL da Página de Ajuda https://github.com/gabrielmdu/Steam-Store-Tooltip/issues
Idiomas Suportados 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
}