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.

O que é AI QR Code Reader?

AI QR Code Reader é uma extensão do Chrome desenvolvida por Oliver.H, e sua principal característica é "An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão AI QR Code Reader

Baixe arquivos de extensão AI QR Code Reader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AI QR Code Reader AI QR Code Reader
ID dhaoijcpieaecjobjmpfjnblfhjonnmm
URL Oficial https://chromewebstore.google.com/detail/ai-qr-code-reader/dhaoijcpieaecjobjmpfjnblfhjonnmm
Descrição An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.
Tamanho do Arquivo 2.62 MB
Contagem de Instalações 867
Versão Atual 0.1
Última Atualização 2022-10-11
Data de Publicação 2022-10-10
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor Oliver.H
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/BC-XH/AI-QR-Code-Reader
Idiomas Suportados 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"
            ]
        }
    ]
}