Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
Qu'est-ce que Steam Redeem ?
Steam Redeem est une extension Chrome développée par Glass Echidna Pty Ltd, et sa fonction principale est "Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Steam Redeem
Téléchargez les fichiers d'extension Steam Redeem 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
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.
Informations de Base sur l'Extension
Nom | |
ID | cepidlbnnmiiaeginikgkedgmjambcha |
URL Officiel | https://chrome.google.com/webstore/detail/steam-redeem/cepidlbnnmiiaeginikgkedgmjambcha |
Description | Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser. |
Taille du Fichier | 79.85 KB |
Nombre d'Installations | 202 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2017-09-18 |
Date de Publication | 2017-09-18 |
Évaluation | 1.00/5 Total 2 Évaluations |
Développeur | Glass Echidna Pty Ltd |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Benjamin-Dobell/steam-redeem |
URL de la Page d'Aide | https://github.com/Benjamin-Dobell/steam-redeem/issues |
Langues Prises en Charge | 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" ] } ] } |