QR Code Reader

A chrome extension for reading QR code from webpage.

QR Code Readerคืออะไร?

QR Code Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย QRExt และคุณลักษณะหลักของมันคือ "A chrome extension for reading QR code from webpage."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QR Code Reader

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

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

                        If there is a QR code on the webpage you are browsing, How do you know the content of that QR Code. Don't Worry, this extension comes to the rescue. QR Code Reader can show the content from the current webpage for you.

Usage:
Click extension icon or use `Command/Ctrl+Shift+S` shortcut to read QR code on current tab.

Known Issues:
Can't read multiple QR codes in one page.
Unable to decode some QR code.                    

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

ชื่อ QR Code Reader QR Code Reader
ID likadllkkidlligfcdhfnnbkjigdkmci
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci
คำอธิบาย A chrome extension for reading QR code from webpage.
ขนาดไฟล์ 435 KB
จำนวนการติดตั้ง 238,394
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2023-07-05
วันที่เผยแพร่ 2018-11-24
คะแนน 3.77/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา QRExt
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://qrcd.org/
URL หน้าช่วยเหลือ http://tiny.cc/appshelp
URL หน้านโยบายความเป็นส่วนตัว https://qrcd.org/privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QR Code Reader",
    "description": "A chrome extension for reading QR code from webpage.",
    "version": "2.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "QR Code Reader",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "unlimitedStorage",
        "storage"
    ]
}