Steam Hover

Show Steam app details with mouse hover on a Steam link

Steam Hoverคืออะไร?

Steam Hover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://skylark95.github.io และคุณลักษณะหลักของมันคือ "Show Steam app details with mouse hover on a Steam link"

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Steam Hover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        https://skylark95.github.io/chrome-steam-hover/

Features:
- Show Steam app details when hovering over a link
- Show if Owned or on Wishlist
- Open Store Page from tooltip
- View Full Description by scrolling in tooltip

Change Default Currency:
The default currency is US Dollar. To change the currency displayed, navigate to the Chrome extensions page (chrome://extensions) and select the options link under Chrome Steam Hover.

Change Owned or Wishlist Color:
The default colors for owned and wishlist title color are shades of green and and blue. The colors may be changed by clicking on the assigned color in options to pick a new color.

Note that you must be signed into Steam for the title to change color.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Steam Hover Steam Hover
ID jfakmahmklpeigafdahkgkmnlmfjaphd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/steam-hover/jfakmahmklpeigafdahkgkmnlmfjaphd
คำอธิบาย Show Steam app details with mouse hover on a Steam link
ขนาดไฟล์ 71.79 KB
จำนวนการติดตั้ง 331
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2016-04-03
วันที่เผยแพร่ 2016-04-02
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://skylark95.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://skylark95.github.io/chrome-steam-hover/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Hover",
    "version": "1.1.1",
    "version_name": "1.1.1",
    "manifest_version": 2,
    "description": "Show Steam app details with mouse hover on a Steam link",
    "homepage_url": "https:\/\/skylark95.github.io\/chrome-steam-hover\/",
    "minimum_chrome_version": "42",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/vendor.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "http:\/\/store.steampowered.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.min.js",
                "js\/steamhover.js"
            ],
            "css": [
                "css\/vendor.min.css",
                "css\/steamhover.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/skylark95.github.io\/chrome-steam-hover\/*"
            ],
            "js": [
                "js\/site.js"
            ]
        }
    ]
}