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是由https://dynamsoft.com開發的Chrome擴展程式,該擴展的主要功能是“The extension adds a context menu item for images. The user can right click the image to read barcodes from it. Dynamsoft Barcode…”。

擴展截圖

screenshot

下載Barcode Reader擴展crx文件

下載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
官方網址 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": [
                ""
            ]
        }
    ]
}