QR Code Reader

A chrome extension for reading QR code from webpage.

QR Code Reader란 무엇입니까?

QR Code Reader은(는) QRExt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for reading QR code from webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

QR Code Reader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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