QReaderX - QR Code Reader

QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs

什么是QReaderX - QR Code Reader?

QReaderX - QR Code Reader是由qreaderxapp开发的Chrome扩展程序,该扩展的主要功能是“QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs”。

扩展截图

screenshot
screenshot

下载QReaderX - QR Code Reader扩展crx文件

下载QReaderX - QR Code Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        QReaderX is an extension that helps users to view contents of the QR Code displayed on any website just by hovering over it. It also gives warning to the user if the QR Code is not safe to open.

This enables users to make an informed decision instead of opening the QR Code directly and potentially protect them from getting landed onto an unsafe website

Enjoy Safe QR Codes!                    

扩展基本信息

名称 QReaderX - QR Code Reader QReaderX - QR Code Reader
ID ehldnpongcmddeadpnmoikamdpjmfjph
官方URL https://chromewebstore.google.com/detail/qreaderx-qr-code-reader/ehldnpongcmddeadpnmoikamdpjmfjph
简介 QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs
文件大小 952 KB
安装次数 530
当前版本 1.1.4
更新时间 2021-02-06
上架时间 2021-02-06
评分 4.86/5 共7次评分
开发者 qreaderxapp
电子邮箱 [email protected]
付费类型 free
扩展官网 https://qreaderx.com/
帮助页面URL https://qreaderx.com/help
隐私政策页面URL https://qreaderx.com/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QReaderX - QR Code Reader",
    "description": "QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs",
    "version": "1.1.4",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/logo_16.png",
        "48": "assets\/logo_48.png",
        "128": "assets\/logo_128.png"
    },
    "browser_action": {
        "default_title": "QReaderX",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "presistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}