qrcode decoder

Decode QRcode quickly

ما هو qrcode decoder؟

qrcode decoder هو إضافة Chrome تم تطويرها بواسطة Benjamin، والميزة الرئيسية لها هي "Decode QRcode quickly".

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

screenshot
screenshot

تحميل ملف CRX للإضافة qrcode decoder

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

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

                        Decode QRcode; From image file, screenshot or right-click context menu.

v1.1 new feature - From screen shot.
v1.2 new feature - Copy content quickly.
v1.3 new feature - Replace alert with a custom popup component.
V1.4 fix bug - From image click bug.                    

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

الاسم qrcode decoder qrcode decoder
ID hdpogjgalcimaijaamgkjpcbpidcanga
عنوان URL الرسمي https://chromewebstore.google.com/detail/qrcode-decoder/hdpogjgalcimaijaamgkjpcbpidcanga
الوصف Decode QRcode quickly
حجم الملف 86.38 KB
عدد التثبيتات 77
النسخة الحالية 1.4
آخر تحديث 2020-04-28
تاريخ النشر 2020-04-27
تقييم 5.00/5 مجموع تقييمات 3
المطور Benjamin
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "qrcode decoder",
    "description": "Decode QRcode quickly",
    "version": "1.4",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_title": "Decode QRCode quickly",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script\/qrcode\/index.min.js",
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}