Steam Store Tooltip

Show Steam games information when hovering the store links.

Steam Store Tooltip là gì?

Steam Store Tooltip là một tiện ích mở rộng Chrome được phát triển bởi Gabriel Schulte, và tính năng chính của nó là "Show Steam games information when hovering the store links.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Steam Store Tooltip

Tải xuống các tệp mở rộng Steam Store Tooltip dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Steam Store Tooltip Steam Store Tooltip
ID loekhehhklndobiamaakjkefleckboon
URL Chính Thức https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon
Mô tả Show Steam games information when hovering the store links.
Kích Thước Tệp 138 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-05-24
Ngày Phát Hành 2020-01-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Gabriel Schulte
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gabrielmdu/Steam-Store-Tooltip
URL Trang Trợ Giúp https://github.com/gabrielmdu/Steam-Store-Tooltip/issues
Ngôn Ngữ Được Hỗ Trợ 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
}