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.

Vad är URL to QR code converter?

URL to QR code converter är en Chrome-tillägg utvecklad av https://sites.google.com/site/fujundu, och dess huvudfunktion är "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.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner URL to QR code converter-förlängningens CRX-fil

Ladda ner URL to QR code converter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
Officiell webbadress https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
Beskrivning 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.
Filstorlek 46.83 KB
Antal Installationer 4,354
Aktuell Version 0.4
Senast Uppdaterad 2017-02-22
Publiceringsdatum 2017-02-22
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare https://sites.google.com/site/fujundu
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/fjdu/URL-to-QR-code
Stödda Språk 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": [
                ""
            ]
        }
    ]
}