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
官方網址 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"
    ]
}