Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
Cos'è Steam Redeem?
Steam Redeem è un'estensione di Chrome sviluppata da Glass Echidna Pty Ltd, e la sua funzione principale è "Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Steam Redeem
Scarica i file di estensione Steam Redeem in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | cepidlbnnmiiaeginikgkedgmjambcha |
URL Ufficiale | https://chrome.google.com/webstore/detail/steam-redeem/cepidlbnnmiiaeginikgkedgmjambcha |
Descrizione | Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser. |
Dimensione del File | 79.85 KB |
Conteggio Installazioni | 202 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2017-09-18 |
Data di Pubblicazione | 2017-09-18 |
Valutazione | 1.00/5 Totale 2 Valutazioni |
Sviluppatore | Glass Echidna Pty Ltd |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Benjamin-Dobell/steam-redeem |
URL della Pagina di Aiuto | https://github.com/Benjamin-Dobell/steam-redeem/issues |
Lingue Supportate | 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" ] } ] } |