Swish QR-code generator

Generates Swish QR-codes from selections

Swish QR-code generator là gì?

Swish QR-code generator là một tiện ích mở rộng Chrome được phát triển bởi Slype, và tính năng chính của nó là "Generates Swish QR-codes from selections".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Swish QR-code generator

Tải xuống các tệp mở rộng Swish QR-code generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Swish QR-code generator Swish QR-code generator
ID hhocnbflnknkooipcgpeigageelgnlpe
URL Chính Thức https://chromewebstore.google.com/detail/swish-qr-code-generator/hhocnbflnknkooipcgpeigageelgnlpe
Mô tả Generates Swish QR-codes from selections
Kích Thước Tệp 141 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2021-05-31
Ngày Phát Hành 2021-05-25
Nhà Phát Triển Slype
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}