kWh

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

Qu'est-ce que kWh ?

kWh est une extension Chrome développée par fiatjaf, et sa fonction principale est "Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension kWh

Téléchargez les fichiers d'extension kWh au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom kWh kWh
ID mbjlodgfcaknfbphnnfioilcnippdnjp
URL Officiel https://chrome.google.com/webstore/detail/kwh/mbjlodgfcaknfbphnnfioilcnippdnjp
Description Send and receive Lightning payments in the browser with c-lightning, Eclair or Ptarmigan.
Taille du Fichier 428 KB
Nombre d'Installations 16
Version Actuelle 0.5.3
Dernière Mise à Jour 2019-05-15
Date de Publication 2019-05-12
Évaluation 5.00/5 Total 1 Évaluations
Développeur fiatjaf
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/fiatjaf/kwh
URL de la Page d'Aide https://github.com/fiatjaf/kwh
URL de la Page de Politique de Confidentialité https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Langues Prises en Charge 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",
        ""
    ]
}