Steam Hover

Show Steam app details with mouse hover on a Steam link

Steam Hover란 무엇입니까?

Steam Hover은(는) https://skylark95.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show Steam app details with mouse hover on a Steam link"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Steam Hover 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}