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
Eメール [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": [
                ""
            ]
        }
    ]
}