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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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/
도움말 페이지 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": [
                ""
            ]
        }
    ]
}