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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}