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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

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/.                    

拡張機能の基本情報

名前 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
Eメール [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",
        ""
    ]
}