Swish QR-code generator

Generates Swish QR-codes from selections

Cos'è Swish QR-code generator?

Swish QR-code generator è un'estensione di Chrome sviluppata da Slype, e la sua funzione principale è "Generates Swish QR-codes from selections".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Swish QR-code generator

Scarica i file di estensione Swish QR-code generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Easily generate and display Swish QR-codes by selecting a number and right clicking it. You can also use the keyboard shortcut ctrl+shift+s when selecting a number.                    

Informazioni di Base sull'Estensione

Nome Swish QR-code generator Swish QR-code generator
ID hhocnbflnknkooipcgpeigageelgnlpe
URL Ufficiale https://chromewebstore.google.com/detail/swish-qr-code-generator/hhocnbflnknkooipcgpeigageelgnlpe
Descrizione Generates Swish QR-codes from selections
Dimensione del File 141 KB
Conteggio Installazioni 77
Versione Corrente 0.0.2
Ultimo Aggiornamento 2021-05-31
Data di Pubblicazione 2021-05-25
Sviluppatore Slype
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Swish QR-code generator",
    "version": "0.0.2",
    "description": "Generates Swish QR-codes from selections",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/api-proxy.swish.nu\/*",
        "contextMenus",
        "commands"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "create-code-from-selection": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Create QR-code from selected text"
        }
    },
    "icons": {
        "16": "logo_16.png",
        "128": "logo_128.png",
        "512": "logo_512.png",
        "1000": "logo_1000.png"
    }
}