URL to QR code converter

This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.

URL to QR code converterคืออะไร?

URL to QR code converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sites.google.com/site/fujundu และคุณลักษณะหลักของมันคือ "This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL to QR code converter

ดาวน์โหลดไฟล์ส่วนขยาย URL to QR code converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension converts the url of the page you are viewing into a QR code, so that you can scan it with your phone to share the url.

It can also convert text into QR code.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
คำอธิบาย This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.
ขนาดไฟล์ 46.83 KB
จำนวนการติดตั้ง 4,354
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2017-02-22
วันที่เผยแพร่ 2017-02-22
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://sites.google.com/site/fujundu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/fjdu/URL-to-QR-code
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL to QR code converter",
    "short_name": "URL to QR",
    "description": "This extension shows the QR code for the url of the current page or the text you input.  You can save the QR code as a png file.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "qrcode.js",
                "jquery.qrcode.js",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}