QRtube

This extension generates QR codes based on content of the page

Τι είναι το QRtube;

Το QRtube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Leo Sun, και η κύρια λειτουργία του είναι "This extension generates QR codes based on content of the page".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης QRtube

Λήψη αρχείων επέκτασης QRtube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα QRtube QRtube
ID phichmdafaefogijmmjpnljbofidimlm
Επίσημο URL https://chromewebstore.google.com/detail/qrtube/phichmdafaefogijmmjpnljbofidimlm
Περιγραφή This extension generates QR codes based on content of the page
Μέγεθος Αρχείου 102 KB
Αριθμός Εγκαταστάσεων 17
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2014-07-24
Ημερομηνία Δημοσίευσης 2014-07-24
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Leo Sun
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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:\/\/*\/*"
            ]
        }
    ]
}