QR Code tool

The QR code tool generates a QR code based on the URL of the current page by default, and can also customize the content.

QR Code tool란 무엇입니까?

QR Code tool은(는) https://tool-box.vip에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The QR code tool generates a QR code based on the URL of the current page by default, and can also customize the content."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

QR Code tool 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A useful Chrome QR code extension:

function list:
1. QR code generation, the default is to generate the address of the current active page
2. QR code download
3. QR code content reading, support local file upload and BASE64 content reading
4. Support the right-click QR code image analysis of the current page

- Completely offline, no need to worry about privacy security leakage.
- Support one-click download

After installing the extension, click the QR code icon in the upper right corner to generate the QR code of the current page, or customize the content. For more tools, see https://www.g-json.cn                    

확장 프로그램 기본 정보

이름 QR Code tool QR Code tool
ID lhlalkpebapgmcolecdeeikopddfkaoi
공식 URL https://chromewebstore.google.com/detail/qr-code-tool/lhlalkpebapgmcolecdeeikopddfkaoi
설명 The QR code tool generates a QR code based on the URL of the current page by default, and can also customize the content.
파일 크기 229 KB
설치 횟수 166
현재 버전 1.0.1
최근 업데이트 2023-09-28
출시 날짜 2020-12-09
평점 5.00/5 총 3 개의 평점
개발자 https://tool-box.vip
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.tool-box.vip/tools/Qrcode
지원되는 언어 de,en,fr,ca,ru,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "manifest_version": 3,
    "version": "1.0.1",
    "default_locale": "en",
    "author": "Gene Yang",
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/www.g-json.cn",
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "icons": {
        "16": "icons\/i_16.png",
        "48": "icons\/i_48.png",
        "128": "icons\/i_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_name__",
        "default_popup": "index.html",
        "default_icon": {
            "16": "icons\/i_16.png",
            "48": "icons\/i_48.png",
            "128": "icons\/i_128.png"
        }
    }
}