QRtube

This extension generates QR codes based on content of the page

Qu'est-ce que QRtube ?

QRtube est une extension Chrome développée par Leo Sun, et sa fonction principale est "This extension generates QR codes based on content of the page".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension QRtube

Téléchargez les fichiers d'extension QRtube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom QRtube QRtube
ID phichmdafaefogijmmjpnljbofidimlm
URL Officiel https://chromewebstore.google.com/detail/qrtube/phichmdafaefogijmmjpnljbofidimlm
Description This extension generates QR codes based on content of the page
Taille du Fichier 102 KB
Nombre d'Installations 17
Version Actuelle 1.0.1
Dernière Mise à Jour 2014-07-24
Date de Publication 2014-07-24
Évaluation 5.00/5 Total 3 Évaluations
Développeur Leo Sun
Type de Paiement free
Langues Prises en Charge 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:\/\/*\/*"
            ]
        }
    ]
}