Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
Steam Redeem क्या है?
Steam Redeem Glass Echidna Pty Ltd द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Steam Redeem एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Detects Steam keys in a web-page and injects a 'Redeem' button so you can quickly redeem/activate Steam keys in your browser. If you have a page with several Steam keys visible, pressing the Steam Redeem logo next to your address bar will automatically bulk redeem all keys visible on the page. - Open source and MIT licensed. - Does not use any personal information (username and password are not accessed in any way). - Communicates directly with the official Steam APIs over HTTPS.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | cepidlbnnmiiaeginikgkedgmjambcha |
आधिकारिक URL | https://chrome.google.com/webstore/detail/steam-redeem/cepidlbnnmiiaeginikgkedgmjambcha |
विवरण | Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser. |
फ़ाइल का आकार | 79.85 KB |
स्थापना संख्या | 202 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2017-09-18 |
प्रकाशन तिथि | 2017-09-18 |
रेटिंग | 1.00/5 कुल 2 रेटिंग्स |
डेवलपर | Glass Echidna Pty Ltd |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Benjamin-Dobell/steam-redeem |
सहायता पृष्ठ URL | https://github.com/Benjamin-Dobell/steam-redeem/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Steam Redeem", "description": "Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.", "icons": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "version": "1.0.1", "page_action": { "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "permissions": [ "activeTab", "cookies", "*:\/\/store.steampowered.com\/", "*:\/\/store.steampowered.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ] } ] } |