Barcode Reader

The extension adds a context menu item for images. The user can right click the image to read barcodes from it. Dynamsoft Barcode…

ما هو Barcode Reader؟

Barcode Reader هو إضافة Chrome تم تطويرها بواسطة https://dynamsoft.com، والميزة الرئيسية لها هي "The extension adds a context menu item for images. The user can right click the image to read barcodes from it. Dynamsoft Barcode…".

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

screenshot

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

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

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

                        The extension adds a context menu item for images. The user can right click the image to read barcodes from it.

Dynamsoft Barcode Reader is used to provide the barcode reading ability.

Supported Barcode Formats:

Code 11
Code 39 (including Code 39 Extended)
Code 93
Code 128
Codabar
Interleaved 2 of 5
EAN-8
EAN-13
UPC-A
UPC-E
Industrial 2 of 5
MSI
PharmaCode
QR Code (including Micro QR Code and Model 1)
Data Matrix
PDF417 (including Micro PDF417)
Aztec Code
MaxiCode (mode 2-5)
DotCode

Check out the blog for details: https://www.dynamsoft.com/codepool/barcode-reading-chrome-extension.html                    

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

الاسم Barcode Reader Barcode Reader
ID dobdeddidkdfhigcmnfkgfodgpamebkg
عنوان URL الرسمي https://chromewebstore.google.com/detail/barcode-reader/dobdeddidkdfhigcmnfkgfodgpamebkg
الوصف The extension adds a context menu item for images. The user can right click the image to read barcodes from it. Dynamsoft Barcode…
حجم الملف 6.34 MB
عدد التثبيتات 399
النسخة الحالية 1.0
آخر تحديث 2023-02-20
تاريخ النشر 2023-02-20
المطور https://dynamsoft.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.dynamsoft.com/barcode-reader/overview/
عنوان صفحة المساعدة https://github.com/tony-xlh/barcode-reader-chrome-extension/issues
عنوان صفحة سياسة الخصوصية http://www.dynamsoft.com/PrivacyStatement.aspx
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Barcode Reader",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}