Swish QR-code generator

Generates Swish QR-codes from selections

什么是Swish QR-code generator?

Swish QR-code generator是由Slype开发的Chrome扩展程序,该扩展的主要功能是“Generates Swish QR-codes from selections”。

扩展截图

screenshot

下载Swish QR-code generator扩展crx文件

下载Swish QR-code generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Swish QR-code generator Swish QR-code generator
ID hhocnbflnknkooipcgpeigageelgnlpe
官方URL https://chromewebstore.google.com/detail/swish-qr-code-generator/hhocnbflnknkooipcgpeigageelgnlpe
简介 Generates Swish QR-codes from selections
文件大小 141 KB
安装次数 77
当前版本 0.0.2
更新时间 2021-05-31
上架时间 2021-05-25
开发者 Slype
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}