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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ https://github.com/tony-xlh/barcode-reader-chrome-extension/issues
URL หน้านโยบายความเป็นส่วนตัว 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": [
                ""
            ]
        }
    ]
}