kWh

Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.

kWhคืออะไร?

kWh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fiatjaf และคุณลักษณะหลักของมันคือ "Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย kWh

ดาวน์โหลดไฟล์ส่วนขยาย 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/.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ kWh 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",
        ""
    ]
}