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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}