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はOliver.Hによって開発されたChromeの拡張機能で、その主な機能は「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

AI QR Code Reader拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}