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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |