Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
什麼是Steam Redeem?
Steam Redeem是由Glass Echidna Pty Ltd開發的Chrome擴展程式,該擴展的主要功能是“Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.”。
擴展截圖
下載Steam Redeem擴展crx文件
下載Steam Redeem擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } ] } |