Swish QR-code generator

Generates Swish QR-codes from selections

What is Swish QR-code generator?

Swish QR-code generator is a Chrome extension developed by Slype, and its main feature is "Generates Swish QR-codes from selections".

Extension Screenshots

screenshot

Download Swish QR-code generator Extension CRX File

Download Swish QR-code generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Swish QR-code generator Swish QR-code generator
ID hhocnbflnknkooipcgpeigageelgnlpe
Official URL https://chromewebstore.google.com/detail/swish-qr-code-generator/hhocnbflnknkooipcgpeigageelgnlpe
Description Generates Swish QR-codes from selections
File Size 141 KB
Installation Count 77
Current Version 0.0.2
Last Updated 2021-05-31
Publish Date 2021-05-25
Developer Slype
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}