Steam Store Tooltip

Show Steam games information when hovering the store links.

Steam Store Tooltipคืออะไร?

Steam Store Tooltip เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gabriel Schulte และคุณลักษณะหลักของมันคือ "Show Steam games information when hovering the store links."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Store Tooltip

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
}