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