Import Wishlist
Import your Steam's wishlist to your GOG account.
Import Wishlistคืออะไร?
Import Wishlist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://import-wishlist.netlify.app และคุณลักษณะหลักของมันคือ "Import your Steam's wishlist to your GOG account."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Import Wishlist
ดาวน์โหลดไฟล์ส่วนขยาย Import Wishlist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension helps you to import your Steam wishlist to your GOG account. Source code: https://github.com/Daniel-Mendes/import-wishlist
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Import Wishlist |
ID | jenjpehgcedkjfjmelkodhagcogpbmgl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/import-wishlist/jenjpehgcedkjfjmelkodhagcogpbmgl |
คำอธิบาย | Import your Steam's wishlist to your GOG account. |
ขนาดไฟล์ | 55.03 KB |
จำนวนการติดตั้ง | 133 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2023-02-15 |
วันที่เผยแพร่ | 2022-06-09 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://import-wishlist.netlify.app |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_popup": "popup\/popup.html", "default_title": "__MSG_extensionName__" }, "author": "Daniel Mendes", "background": { "service_worker": "background\/background.js" }, "content_scripts": [ { "js": [ "content\/content.js" ], "matches": [ "https:\/\/auth.gog.com\/token*" ] } ], "default_locale": "en", "description": "__MSG_extensionDescription__", "host_permissions": [ "https:\/\/store.steampowered.com\/wishlist\/profiles\/*", "https:\/\/steamcommunity.com\/*", "https:\/\/*.gog.com\/*", "https:\/\/import-wishlist.netlify.app\/.netlify\/functions\/*" ], "icons": { "16": "assets\/icons\/icon-16.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" }, "manifest_version": 3, "name": "__MSG_extensionName__", "permissions": [ "storage", "identity", "webNavigation" ], "version": "0.1.1" } |