Show Great on Deck on Steam

See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store.

Show Great on Deck on Steam란 무엇입니까?

Show Great on Deck on Steam은(는) cptpiepmatz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Show Great on Deck on Steam 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Steam Store does not display the Steam Deck Verification Status on every page. This extension adds this status to a lot of pages, so you can see at a glance which games are compatible with the Deck.

Furthermore the Verification Status is often not up-to-date. To solve this issue, the extension adds a medal from ProtonDB to the search results, front and app page.

For more info, head over to the ReadMe on Github: https://github.com/cptpiepmatz/great-on-deck-search/tree/main#readme                    

확장 프로그램 기본 정보

이름 Show Great on Deck on Steam Show Great on Deck on Steam
ID olagniaikhbmpdgghoifgloijcndfled
공식 URL https://chromewebstore.google.com/detail/show-great-on-deck-on-ste/olagniaikhbmpdgghoifgloijcndfled
설명 See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store.
파일 크기 182 KB
설치 횟수 4,661
현재 버전 1.5.0
최근 업데이트 2023-08-08
출시 날짜 2022-07-11
평점 5.00/5 총 11 개의 평점
개발자 cptpiepmatz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cptpiepmatz/great-on-deck-search
도움말 페이지 URL https://github.com/cptpiepmatz/great-on-deck-search/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Great on Deck on Steam",
    "description": "See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store.",
    "version": "1.5.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "out\/background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/store.steampowered.com\/*",
                "https:\/\/steamcommunity.com\/id\/*\/games*",
                "https:\/\/steamcommunity.com\/profiles\/*\/games*"
            ],
            "run_at": "document_end",
            "js": [
                "out\/pages.bundle.js"
            ],
            "css": [
                "out\/pages.bundle.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/store.steampowered.com\/*",
        "https:\/\/steamcommunity.com\/*",
        "https:\/\/www.protondb.com\/app\/*",
        "https:\/\/steamdeckhq.com\/*"
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_popup": "src\/settings\/settings.html"
    }
}