Auto QR Code reader

Fast automatic reading of QR codes, install once and forget about the buttons

Auto QR Code readerคืออะไร?

Auto QR Code reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://prohetamine.ru และคุณลักษณะหลักของมันคือ "Fast automatic reading of QR codes, install once and forget about the buttons"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Hi, I'm a robot extension Bob, I'll help you enjoy surfing the Internet and scan any QR Code you want in just a few seconds.

And so that's what I already know how to do:

🤖 — Automatic QR Code Reading

👀 — Reading QR Code from the extension menu

💾 — Generating QR Code as a link or text and downloading

🚫 — It is completely secure because it does not transmit or store user information

📡 — Can work without internet

🎁 — Completely free and without ads

I was created to help a person!                    

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

ชื่อ Auto QR Code reader Auto QR Code reader
ID eobmjffolpoiolllhlbflbkdjeabbpke
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-qr-code-reader/eobmjffolpoiolllhlbflbkdjeabbpke
คำอธิบาย Fast automatic reading of QR codes, install once and forget about the buttons
ขนาดไฟล์ 429 KB
จำนวนการติดตั้ง 92
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2022-09-05
วันที่เผยแพร่ 2022-07-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://prohetamine.ru
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/prohetamine/Auto-QR-Code-reader
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto QR Code reader",
    "description": "Fast automatic reading of QR codes, install once and forget about the buttons",
    "version": "0.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "src\/background\/script.js"
    },
    "action": {
        "default_popup": "src\/popup\/index.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "activeTab",
        "tabs",
        "unlimitedStorage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/lib\/qr-scanner.legacy.min.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/page\/style.css"
            ],
            "js": [
                "src\/page\/script.js"
            ]
        }
    ]
}