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…

Qu'est-ce que Barcode Reader ?

Barcode Reader est une extension Chrome développée par https://dynamsoft.com, et sa fonction principale est "The extension adds a context menu item for images. The user can right click the image to read barcodes from it. Dynamsoft Barcode…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Barcode Reader

Téléchargez les fichiers d'extension Barcode Reader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Barcode Reader Barcode Reader
ID dobdeddidkdfhigcmnfkgfodgpamebkg
URL Officiel https://chromewebstore.google.com/detail/barcode-reader/dobdeddidkdfhigcmnfkgfodgpamebkg
Description The extension adds a context menu item for images. The user can right click the image to read barcodes from it. Dynamsoft Barcode…
Taille du Fichier 6.34 MB
Nombre d'Installations 399
Version Actuelle 1.0
Dernière Mise à Jour 2023-02-20
Date de Publication 2023-02-20
Développeur https://dynamsoft.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.dynamsoft.com/barcode-reader/overview/
URL de la Page d'Aide https://github.com/tony-xlh/barcode-reader-chrome-extension/issues
URL de la Page de Politique de Confidentialité http://www.dynamsoft.com/PrivacyStatement.aspx
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}