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 |
Eメール | [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" ] } ] } |