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!」です。
拡張機能のスクリーンショット
ProtonDB for Steam拡張機能のCRXファイルをダウンロード
ProtonDB for Steam拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" ] } ] } |