QR Code Reader

A chrome extension for reading QR code from webpage.

What is QR Code Reader?

QR Code Reader is a Chrome extension developed by QRExt, and its main feature is "A chrome extension for reading QR code from webpage.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download QR Code Reader Extension CRX File

Download QR Code Reader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name QR Code Reader QR Code Reader
ID likadllkkidlligfcdhfnnbkjigdkmci
Official URL https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci
Description A chrome extension for reading QR code from webpage.
File Size 435 KB
Installation Count 238,394
Current Version 2.0.1
Last Updated 2023-07-05
Publish Date 2018-11-24
Rating 3.77/5 Total 57 Ratings
Developer QRExt
Email [email protected]
Payment Type free
Extension Website https://qrcd.org/
Help Page URL http://tiny.cc/appshelp
Privacy Policy Page URL https://qrcd.org/privacy.html
Supported Languages 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"
    ]
}