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.

Was ist URL to QR code converter?

URL to QR code converter ist eine Chrome-Erweiterung, die von https://sites.google.com/site/fujundu entwickelt wurde, und ihr Hauptmerkmal ist "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.".

Erweiterungsscreenshots

screenshot
screenshot

URL to QR code converter-Erweiterungs-CRX-Datei herunterladen

Laden Sie URL to QR code converter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
Offizielle URL https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
Beschreibung 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.
Dateigröße 46.83 KB
Installationsanzahl 4,354
Aktuelle Version 0.4
Letztes Update 2017-02-22
Veröffentlichungsdatum 2017-02-22
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler https://sites.google.com/site/fujundu
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/fjdu/URL-to-QR-code
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}