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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में QR Code tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    }
}