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
官方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": [
                ""
            ]
        }
    ]
}