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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें
crx प्रारूप में ProtonDB for Steam एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |