kWh
Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.
什麼是kWh?
kWh是由fiatjaf開發的Chrome擴展程式,該擴展的主要功能是“Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.”。
擴展截圖
下載kWh擴展crx文件
下載kWh擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/.
擴展基本資訊
名稱 | |
ID | mbjlodgfcaknfbphnnfioilcnippdnjp |
官方網址 | https://chrome.google.com/webstore/detail/kwh/mbjlodgfcaknfbphnnfioilcnippdnjp |
簡介 | Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan. |
檔案大小 | 428 KB |
安裝次數 | 16 |
目前版本 | 0.5.3 |
更新時間 | 2019-05-15 |
上架時間 | 2019-05-12 |
評分 | 5.00/5 共 1 次評分 |
開發者 | fiatjaf |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/fiatjaf/kwh |
說明頁面URL | https://github.com/fiatjaf/kwh |
隱私政策頁面URL | https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md |
支援的語言 | 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", " |