Steam Redeem
Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser.
Steam Redeemคืออะไร?
Steam Redeem เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Glass Echidna Pty Ltd และคุณลักษณะหลักของมันคือ "Quickly redeem Steam (e.g. Humble Bundle) keys straight from your browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Redeem
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |