ProtonDB for Steam

Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!

ProtonDB for Steam란 무엇입니까?

ProtonDB for Steam은(는) Software Fusion에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ProtonDB for Steam adds proton badges to the Steam game pages. 
This way, you know how well a game runs on Linux before you actually buy it. 

The extensions shows you the proton rating, if available, and also if a game has a native Linux version alongside it. 

The project is open-source and can be found on GitHub.
Credits to MostwantedRBX on GitHub for founding the project

Version 1.6.2 Changelog:
- Change badge colours to improve visibility for colorblindness
- Add badges to the search bar results
- Bugfixes

Coming Soon:
- Ability to adjust badge colors
- Ability to enable/disable the badges in certain places
- Customizations
- Badges on the front page                    

확장 프로그램 기본 정보

이름 ProtonDB for Steam ProtonDB for Steam
ID ngonfifpkpeefnhelnfdkficaiihklid
공식 URL https://chromewebstore.google.com/detail/protondb-for-steam/ngonfifpkpeefnhelnfdkficaiihklid
설명 Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!
파일 크기 32.57 KB
설치 횟수 3,156
현재 버전 1.6.2
최근 업데이트 2023-03-29
출시 날짜 2022-01-12
평점 4.89/5 총 9 개의 평점
개발자 Software Fusion
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/MostwantedRBX/proton-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.6.2",
    "name": "ProtonDB for Steam",
    "description": "Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!",
    "host_permissions": [
        "https:\/\/www.protondb.com\/*"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "\/icons\/proton_16.png",
        "32": "\/icons\/proton_32.png",
        "48": "\/icons\/proton_48.png",
        "128": "\/icons\/proton_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/store.steampowered.com\/app\/*"
            ],
            "js": [
                "js\/steamStore.js"
            ]
        },
        {
            "matches": [
                "https:\/\/store.steampowered.com\/search*"
            ],
            "js": [
                "js\/steamSearch.js"
            ]
        },
        {
            "matches": [
                "https:\/\/store.steampowered.com\/*"
            ],
            "js": [
                "js\/steamGeneral.js"
            ],
            "css": [
                "css\/protondbCard.css",
                "css\/variables.css"
            ]
        }
    ]
}