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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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", " |