Swish QR-code generator

Generates Swish QR-codes from selections

Swish QR-code generatorคืออะไร?

Swish QR-code generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Slype และคุณลักษณะหลักของมันคือ "Generates Swish QR-codes from selections"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Swish QR-code generator

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}