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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον qreaderxapp, και η κύρια λειτουργία του είναι "QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης QReaderX - QR Code Reader

Λήψη αρχείων επέκτασης 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"
    ]
}