kWh
Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.
kWh क्या है?
kWh fiatjaf द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में kWh एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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", " |