Free Barcode Generator

Generate barcodes directly from your browser

Free Barcode Generator란 무엇입니까?

Free Barcode Generator은(는) nextplus.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate barcodes directly from your browser"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Free Barcode Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Easily generate barcode images from selected text with the Barcode Generator Chrome Extension. Transform any text into a barcode in just a few clicks, supporting various popular barcode formats right from your browser. It's free, fast, and secure!

Key Features:

* Free and easy-to-use barcode generator
* Supports multiple popular barcode formats
* No registration required, completely browser-based
* Generates barcodes locally, ensuring your data privacy
* Print or download generated barcodes for various uses
* Secure and lightweight, does not slow down your browsing experience

How to Use:

* Install the Barcode Generator Chrome Extension
* Highlight the desired text on any webpage
* Right-click and select `Generate barcode for "..."` from the context menu
* Choose the desired barcode format
* Print or download the generated barcode image

For any questions, suggestions, or feature requests, please reach out to us at [email protected]. We're always happy to help and improve your experience.                    

확장 프로그램 기본 정보

이름 Free Barcode Generator Free Barcode Generator
ID igbpgoifpnaokhbegcmpjopeeknkican
공식 URL https://chromewebstore.google.com/detail/free-barcode-generator/igbpgoifpnaokhbegcmpjopeeknkican
설명 Generate barcodes directly from your browser
파일 크기 159 KB
설치 횟수 1,739
현재 버전 1.0.4
최근 업데이트 2023-11-28
출시 날짜 2021-12-16
평점 3.50/5 총 6 개의 평점
개발자 nextplus.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://nextplus.io
개인정보 보호 정책 페이지 URL https://nextplus.io/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Generate barcodes directly from your browser",
    "version": "1.0.4",
    "manifest_version": 3,
    "name": "Free Barcode Generator",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "contextMenus",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}