Url2QRCode

With this extension you can generate a QR Code relative to the active URL.

Co je Url2QRCode?

Url2QRCode je rozšíření Chrome vyvinuté Gabriele Callimaci, a jeho hlavní funkcí je „With this extension you can generate a QR Code relative to the active URL.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Url2QRCode

Stáhněte si soubory rozšíření Url2QRCode ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Have you ever started to read an article on your computer and then you want to continue on the phone or tablet?!?! To me, often, and to do that, every time I have to enter by hand on the phone, the link of the web page, with the possibility of making a mistake and a great loss of time !!
Well, now, thanks to this extension, you can create on the fly a QR Code alleging the URL of the web page open, and through any QR reader installed on your phone, you can restore it on your phone's browser: simple, no ?!?!                    

Základní Informace o Rozšíření

Název Url2QRCode Url2QRCode
ID gnobbgncabdnemdppgojlhblpohickok
Oficiální URL https://chromewebstore.google.com/detail/url2qrcode/gnobbgncabdnemdppgojlhblpohickok
Popis With this extension you can generate a QR Code relative to the active URL.
Velikost souboru 45.66 KB
Počet instalací 38
Aktuální Verze 1.0
Poslední Aktualizace 2015-07-15
Datum Vydání 2015-07-15
Vývojář Gabriele Callimaci
E-mail [email protected]
Typ Platby free
Podporované Jazyky en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extname__",
    "short_name": "__MSG_extname__",
    "description": "__MSG_extdescr__",
    "version": "1.0",
    "default_locale": "it",
    "icons": {
        "16": "QRCode_16.png",
        "36": "QRCode_36.png",
        "48": "QRCode_48.png",
        "128": "QRCode_128.png"
    },
    "author": "Gabriele Callimaci ([email protected])",
    "browser_action": {
        "default_icon": "QRCode_16.png",
        "default_popup": "getQRCode.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.1.4.min.js",
                "jquery.qrcode-0.12.0.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab"
    ]
}