Marina
Liquid wallet web extension (v3)
Marinaคืออะไร?
Marina เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vulpem Ventures และคุณลักษณะหลักของมันคือ "Liquid wallet web extension (v3)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Marina
ดาวน์โหลดไฟล์ส่วนขยาย Marina ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Marina is the ultimate gateway designed to access the Liquid Network directly from your browser. Liquid is a Bitcoin sidechain settlement network for traders and exchanges, enabling faster, more confidential Bitcoin transactions and issuance of digital assets. Marina is a browser extension designed to streamline access to Liquid and foster an even greater adoption of the network. It enables users to easily send and receive Liquid assets such as Liquid Bitcoin (L-BTC) and Tether USDt. Web developers can benefit from Marina integration as a plug-and-play solution to integrate Liquid Network into their browser applications. Thanks to Marina, web applications can now automatically perform blockchain operations, such as fill the address fields and trigger the user to review and confirm and send transactions to the blockchain. We have integrated Liquid.Taxi, our Liquid fee top-up service, directly into Marina. Thanks to this integration, It will now be possible to move around your Liquid assets without having to spend L-BTC for transaction fees. Instead, fees can be paid directly with Tether USDt.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Marina |
ID | nhanebedohgejbllffboeipobccgedhl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/marina/nhanebedohgejbllffboeipobccgedhl |
คำอธิบาย | Liquid wallet web extension (v3) |
ขนาดไฟล์ | 5.93 MB |
จำนวนการติดตั้ง | 4,419 |
เวอร์ชันปัจจุบัน | 0.6.3 |
อัปเดตครั้งล่าสุด | 2024-01-03 |
วันที่เผยแพร่ | 2021-05-09 |
คะแนน | 4.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Vulpem Ventures |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://vulpem.com/marina |
URL หน้านโยบายความเป็นส่วนตัว | https://sites.google.com/vulpem.com/marina-wallet-privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Marina", "description": "Liquid wallet web extension (v3)", "version": "0.6.3", "manifest_version": 3, "background": { "service_worker": "background-script.js" }, "permissions": [ "scripting", "storage", "unlimitedStorage", "idle", "alarms" ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" }, "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js" ], "run_at": "document_start", "all_frames": true } ], "icons": { "16": "assets\/images\/logo\/marina_logo_16x16.png", "32": "assets\/images\/logo\/marina_logo_32x32.png", "48": "assets\/images\/logo\/marina_logo_48x48.png", "128": "assets\/images\/logo\/marina_logo_128x128.png" }, "action": { "default_icon": { "16": "assets\/images\/logo\/marina_logo_16x16.png", "32": "assets\/images\/logo\/marina_logo_32x32.png", "48": "assets\/images\/logo\/marina_logo_48x48.png", "128": "assets\/images\/logo\/marina_logo_128x128.png" }, "default_title": "Marina" }, "web_accessible_resources": [ { "resources": [ "inject-script.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "extension_ids": [ "*" ] } ] } |