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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης QR Code tool

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
        }
    }
}