Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
Wat is Steam Redeem?
Steam Redeem is een Chrome-extensie ontwikkeld door Glass Echidna Pty Ltd, en de belangrijkste functie is "Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.".
Extensie Screenshots
Download het CRX-bestand van de extensie Steam Redeem
Download Steam Redeem-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | cepidlbnnmiiaeginikgkedgmjambcha |
Officiële URL | https://chrome.google.com/webstore/detail/steam-redeem/cepidlbnnmiiaeginikgkedgmjambcha |
Beschrijving | Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser. |
Bestandsgrootte | 79.85 KB |
Aantal Installaties | 202 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2017-09-18 |
Publicatiedatum | 2017-09-18 |
Beoordeling | 1.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Glass Echidna Pty Ltd |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/Benjamin-Dobell/steam-redeem |
Help Pagina-URL | https://github.com/Benjamin-Dobell/steam-redeem/issues |
Ondersteunde Talen | 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" ] } ] } |