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.

Cos'è AI QR Code Reader?

AI QR Code Reader è un'estensione di Chrome sviluppata da Oliver.H, e la sua funzione principale è "An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AI QR Code Reader

Scarica i file di estensione AI QR Code Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AI QR Code Reader AI QR Code Reader
ID dhaoijcpieaecjobjmpfjnblfhjonnmm
URL Ufficiale https://chromewebstore.google.com/detail/ai-qr-code-reader/dhaoijcpieaecjobjmpfjnblfhjonnmm
Descrizione An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.
Dimensione del File 2.62 MB
Conteggio Installazioni 867
Versione Corrente 0.1
Ultimo Aggiornamento 2022-10-11
Data di Pubblicazione 2022-10-10
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore Oliver.H
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/BC-XH/AI-QR-Code-Reader
Lingue Supportate 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"
            ]
        }
    ]
}