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是由https://prohetamine.ru開發的Chrome擴展程式,該擴展的主要功能是“Fast automatic reading of QR codes, install once and forget about the buttons”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Auto QR Code reader擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}