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文件

下載QR Code tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}