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!
Qu'est-ce que ProtonDB for Steam ?
ProtonDB for Steam est une extension Chrome développée par Software Fusion, et sa fonction principale est "Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ProtonDB for Steam
Téléchargez les fichiers d'extension ProtonDB for Steam au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | ProtonDB for Steam |
ID | ngonfifpkpeefnhelnfdkficaiihklid |
URL Officiel | https://chromewebstore.google.com/detail/protondb-for-steam/ngonfifpkpeefnhelnfdkficaiihklid |
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! |
Taille du Fichier | 32.57 KB |
Nombre d'Installations | 3,156 |
Version Actuelle | 1.6.2 |
Dernière Mise à Jour | 2023-03-29 |
Date de Publication | 2022-01-12 |
Évaluation | 4.89/5 Total 9 Évaluations |
Développeur | Software Fusion |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/MostwantedRBX/proton-chrome-extension |
Langues Prises en Charge | 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" ] } ] } |