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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Software Fusion, και η κύρια λειτουργία του είναι "Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ProtonDB for Steam
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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" ] } ] } |