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 |
官方URL | 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" ] } ] } |