QR Code Reader

A chrome extension for reading QR code from webpage.

ما هو QR Code Reader؟

QR Code Reader هو إضافة Chrome تم تطويرها بواسطة QRExt، والميزة الرئيسية لها هي "A chrome extension for reading QR code from webpage.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة QR Code Reader

قم بتنزيل ملفات الامتداد QR Code Reader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        If there is a QR code on the webpage you are browsing, How do you know the content of that QR Code. Don't Worry, this extension comes to the rescue. QR Code Reader can show the content from the current webpage for you.

Usage:
Click extension icon or use `Command/Ctrl+Shift+S` shortcut to read QR code on current tab.

Known Issues:
Can't read multiple QR codes in one page.
Unable to decode some QR code.                    

معلومات أساسية عن التمديد

الاسم QR Code Reader QR Code Reader
ID likadllkkidlligfcdhfnnbkjigdkmci
عنوان URL الرسمي https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci
الوصف A chrome extension for reading QR code from webpage.
حجم الملف 435 KB
عدد التثبيتات 238,394
النسخة الحالية 2.0.1
آخر تحديث 2023-07-05
تاريخ النشر 2018-11-24
تقييم 3.77/5 مجموع تقييمات 57
المطور QRExt
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://qrcd.org/
عنوان صفحة المساعدة http://tiny.cc/appshelp
عنوان صفحة سياسة الخصوصية https://qrcd.org/privacy.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QR Code Reader",
    "description": "A chrome extension for reading QR code from webpage.",
    "version": "2.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "QR Code Reader",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "unlimitedStorage",
        "storage"
    ]
}