Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
Co to jest Steam Redeem?
Steam Redeem to rozszerzenie Chrome opracowane przez Glass Echidna Pty Ltd, a jego główną funkcją jest „Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Steam Redeem
Pobierz pliki rozszerzeń Steam Redeem w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | cepidlbnnmiiaeginikgkedgmjambcha |
Oficjalny URL | https://chrome.google.com/webstore/detail/steam-redeem/cepidlbnnmiiaeginikgkedgmjambcha |
Opis | Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser. |
Rozmiar pliku | 79.85 KB |
Liczba instalacji | 202 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2017-09-18 |
Data Publikacji | 2017-09-18 |
Ocena | 1.00/5 Łącznie 2 Oceny |
Deweloper | Glass Echidna Pty Ltd |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Benjamin-Dobell/steam-redeem |
Adres URL Strony Pomocy | https://github.com/Benjamin-Dobell/steam-redeem/issues |
Obsługiwane Języki | 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" ] } ] } |