X QRCode

A powerfull chrome extension for qrcode encoding and decoding.

Τι είναι το X QRCode;

Το X QRCode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nuintun, και η κύρια λειτουργία του είναι "A powerfull chrome extension for qrcode encoding and decoding.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης X QRCode

Λήψη αρχείων επέκτασης X QRCode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The extension can quickly convert the tab address to a QRCode and support converting the link and selected text in the page to a QRCode and parsing the QRCode image in the page.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα X QRCode X QRCode
ID afjgnjcplfimlceahcgancmlnmbkgmhf
Επίσημο URL https://chromewebstore.google.com/detail/x-qrcode/afjgnjcplfimlceahcgancmlnmbkgmhf
Περιγραφή A powerfull chrome extension for qrcode encoding and decoding.
Μέγεθος Αρχείου 46.77 KB
Αριθμός Εγκαταστάσεων 221
Τρέχουσα Έκδοση 0.3.3
Τελευταία Ενημέρωση 2022-01-21
Ημερομηνία Δημοσίευσης 2019-05-28
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής nuintun
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/nuintun/x-qrcode
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/nuintun/x-qrcode
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.3.3",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "icons": {
        "16": "images\/qrcode-16.png",
        "32": "images\/qrcode-32.png",
        "48": "images\/qrcode-48.png",
        "128": "images\/qrcode-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/qrcode-16.png",
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "homepage_url": "https:\/\/github.com\/nuintun\/x-qrcode",
    "permissions": [
        "activeTab",
        "contextMenus",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}