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 |
官方網址 | 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" ] } ] } |