QReaderX - QR Code Reader

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

Wat is QReaderX - QR Code Reader?

QReaderX - QR Code Reader is een Chrome-extensie ontwikkeld door qreaderxapp, en de belangrijkste functie is "QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie QReaderX - QR Code Reader

Download QReaderX - QR Code Reader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam QReaderX - QR Code Reader QReaderX - QR Code Reader
ID ehldnpongcmddeadpnmoikamdpjmfjph
Officiële URL https://chromewebstore.google.com/detail/qreaderx-qr-code-reader/ehldnpongcmddeadpnmoikamdpjmfjph
Beschrijving QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs
Bestandsgrootte 952 KB
Aantal Installaties 530
Huidige Versie 1.1.4
Laatst Bijgewerkt 2021-02-06
Publicatiedatum 2021-02-06
Beoordeling 4.86/5 Totaal 7 Beoordelingen
Ontwikkelaar qreaderxapp
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://qreaderx.com/
Help Pagina-URL https://qreaderx.com/help
URL van de Privacybeleid Pagina https://qreaderx.com/privacy
Ondersteunde Talen 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"
    ]
}