Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
Steam Redeem là gì?
Steam Redeem là một tiện ích mở rộng Chrome được phát triển bởi Glass Echidna Pty Ltd, và tính năng chính của nó là "Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Steam Redeem
Tải xuống các tệp mở rộng Steam Redeem dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | cepidlbnnmiiaeginikgkedgmjambcha |
URL Chính Thức | https://chrome.google.com/webstore/detail/steam-redeem/cepidlbnnmiiaeginikgkedgmjambcha |
Mô tả | Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser. |
Kích Thước Tệp | 79.85 KB |
Số Lần Cài Đặt | 202 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2017-09-18 |
Ngày Phát Hành | 2017-09-18 |
Đánh Giá | 1.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Glass Echidna Pty Ltd |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Benjamin-Dobell/steam-redeem |
URL Trang Trợ Giúp | https://github.com/Benjamin-Dobell/steam-redeem/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |