kWh
Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.
kWh là gì?
kWh là một tiện ích mở rộng Chrome được phát triển bởi fiatjaf, và tính năng chính của nó là "Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.".
Ả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 kWh
Tải xuống các tệp mở rộng kWh 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
A browser extension interface for your c-lightning, Eclair or Ptarmigan node. - Browse balance and latest transactions; - webln support; - Pay highlighted invoice with a context menu click; - Handle lightning: links; - "Generate invoice here" context menu; - Manual payments and invoice creation; - Instant notifications on received payments; - No window popups, all interactions happen in the browserAction popup. See more at https://github.com/fiatjaf/kwh/.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mbjlodgfcaknfbphnnfioilcnippdnjp |
URL Chính Thức | https://chrome.google.com/webstore/detail/kwh/mbjlodgfcaknfbphnnfioilcnippdnjp |
Mô tả | Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan. |
Kích Thước Tệp | 428 KB |
Số Lần Cài Đặt | 16 |
Phiên Bản Hiện Tại | 0.5.3 |
Cập Nhật Lần Cuối | 2019-05-15 |
Ngày Phát Hành | 2019-05-12 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | fiatjaf |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/fiatjaf/kwh |
URL Trang Trợ Giúp | https://github.com/fiatjaf/kwh |
URL Trang Chính Sách Bảo Mật | https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "id": "kwh", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "57.0" } }, "manifest_version": 2, "name": "kWh", "description": "Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.", "version": "0.5.3", "author": "fiatjaf", "icons": { "16": "icon16.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "options_ui": { "page": "options.html", "browser_style": true, "open_in_tab": false }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-bundle.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "background-bundle.js" ], "persistent": true }, "browser_action": { "default_icon": { "16": "icon16.png", "64": "icon64.png" }, "default_title": "KwH", "default_popup": "popup.html" }, "web_accessible_resources": [ "webln-bundle.js" ], "permissions": [ "storage", "clipboardWrite", "notifications", "contextMenus", "tabs", " |