QRtube

This extension generates QR codes based on content of the page

¿Qué es QRtube?

QRtube es una extensión de Chrome desarrollada por Leo Sun, y su función principal es "This extension generates QR codes based on content of the page".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión QRtube

Descarga archivos de extensión QRtube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Easy and fast tool to generate QR codes! No instructions needed!

1.0.1:
- fixed encoding issues on unicode characters

Features
Pop-up window:
- click on the popup icon for QR code for the current tab
- type anything into the text box and get QR code for your text
- left click on the QR code to download a copy

Right Click Menu:
- right click on anything (selection, links, images) on the page and get a floating QR code
- right click and save the QR code just like any other image on the page
- left click and the floating QR code will go away                    

Información Básica de la Extensión

Nombre QRtube QRtube
ID phichmdafaefogijmmjpnljbofidimlm
URL Oficial https://chromewebstore.google.com/detail/qrtube/phichmdafaefogijmmjpnljbofidimlm
Descripción This extension generates QR codes based on content of the page
Tamaño del Archivo 102 KB
Cantidad de Instalaciones 17
Versión Actual 1.0.1
Última Actualización 2014-07-24
Fecha de Publicación 2014-07-24
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Leo Sun
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QRtube",
    "description": "This extension generates QR codes based on content of the page",
    "version": "1.0.1",
    "permissions": [
        "tabs",
        "contextMenus",
        "downloads",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "qrtube.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "qrcode.min.js",
                "qrtube.js",
                "jquery.qrcode.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}