URL to QR code converter

This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.

Τι είναι το URL to QR code converter;

Το URL to QR code converter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sites.google.com/site/fujundu, και η κύρια λειτουργία του είναι "This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης URL to QR code converter

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

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

                        This extension converts the url of the page you are viewing into a QR code, so that you can scan it with your phone to share the url.

It can also convert text into QR code.                    

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

Όνομα URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
Επίσημο URL https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
Περιγραφή This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.
Μέγεθος Αρχείου 46.83 KB
Αριθμός Εγκαταστάσεων 4,354
Τρέχουσα Έκδοση 0.4
Τελευταία Ενημέρωση 2017-02-22
Ημερομηνία Δημοσίευσης 2017-02-22
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://sites.google.com/site/fujundu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/fjdu/URL-to-QR-code
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL to QR code converter",
    "short_name": "URL to QR",
    "description": "This extension shows the QR code for the url of the current page or the text you input.  You can save the QR code as a png file.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "qrcode.js",
                "jquery.qrcode.js",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}