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.

Hvad er URL to QR code converter?

URL to QR code converter er en Chrome-udvidelse udviklet af https://sites.google.com/site/fujundu, og dens hovedfunktion er "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.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download URL to QR code converter-udvidelses-CRX-fil

Download URL to QR code converter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
Officiel URL https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
Beskrivelse 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.
Filstørrelse 46.83 KB
Antal Installationer 4,354
Nuværende Version 0.4
Senest Opdateret 2017-02-22
Udgivelsesdato 2017-02-22
Bedømmelse 4.00/5 Samlet 4 Bedømmelser
Udvikler https://sites.google.com/site/fujundu
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/fjdu/URL-to-QR-code
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}