AI QR Code Reader

An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.

Τι είναι το AI QR Code Reader;

Το AI QR Code Reader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Oliver.H, και η κύρια λειτουργία του είναι "An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.".

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

screenshot
screenshot

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

Λήψη αρχείων επέκτασης AI QR Code Reader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Simply click on the extension's shortcut after the extension has been installed, and you will be taken to the QR code selection interface. If the QR code in the boxed area is successfully recognized, the result will be displayed in a bubble pop-up box. Right-click to exit this interface.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AI QR Code Reader AI QR Code Reader
ID dhaoijcpieaecjobjmpfjnblfhjonnmm
Επίσημο URL https://chromewebstore.google.com/detail/ai-qr-code-reader/dhaoijcpieaecjobjmpfjnblfhjonnmm
Περιγραφή An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.
Μέγεθος Αρχείου 2.62 MB
Αριθμός Εγκαταστάσεων 867
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2022-10-11
Ημερομηνία Δημοσίευσης 2022-10-10
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Oliver.H
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/BC-XH/AI-QR-Code-Reader
Υποστηριζόμενες Γλώσσες en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "0.1",
    "icons": {
        "128": "images\/icon.png"
    },
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "__MSG_extActionTitle__"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "models\/*",
                "sandbox\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "sandbox": {
        "pages": [
            "sandbox\/sandbox.html"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ]
}