qrcode decoder

Decode QRcode quickly

What is qrcode decoder?

qrcode decoder is a Chrome extension developed by Benjamin, and its main feature is "Decode QRcode quickly".

Extension Screenshots

screenshot
screenshot

Download qrcode decoder Extension CRX File

Download qrcode decoder 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

                        Decode QRcode; From image file, screenshot or right-click context menu.

v1.1 new feature - From screen shot.
v1.2 new feature - Copy content quickly.
v1.3 new feature - Replace alert with a custom popup component.
V1.4 fix bug - From image click bug.                    

Extension Basic Information

Name qrcode decoder qrcode decoder
ID hdpogjgalcimaijaamgkjpcbpidcanga
Official URL https://chromewebstore.google.com/detail/qrcode-decoder/hdpogjgalcimaijaamgkjpcbpidcanga
Description Decode QRcode quickly
File Size 86.38 KB
Installation Count 77
Current Version 1.4
Last Updated 2020-04-28
Publish Date 2020-04-27
Rating 5.00/5 Total 3 Ratings
Developer Benjamin
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "qrcode decoder",
    "description": "Decode QRcode quickly",
    "version": "1.4",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_title": "Decode QRCode quickly",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script\/qrcode\/index.min.js",
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}