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.”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Steam Store Tooltip
ID loekhehhklndobiamaakjkefleckboon
官方網址 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
電子郵箱 [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
}