QR Code Generator

This extension generates a QR code from links and selected text.

Co to jest QR Code Generator?

QR Code Generator to rozszerzenie Chrome opracowane przez Spencer Barnes-Israel, a jego główną funkcją jest „This extension generates a QR code from links and selected text.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia QR Code Generator

Pobierz pliki rozszerzeń QR Code Generator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension generates a QR code from links and selected text, which you can then scan with your smart phone. This provides you with a quick way to get links and text to your phone.

Translated into Brazilian Portuguese and Spanish via Google Translate. If you'd like to volunteer to translate this extension into your native language, please contact me. Thanks!

The code is on GitHub -> https://github.com/sbarnesisrael/qr-generator-chrext                    

Podstawowe informacje o rozszerzeniu

Nazwa QR Code Generator QR Code Generator
ID kjcljdffopfopchbndhhfkpjddjbhjpg
Oficjalny URL https://chrome.google.com/webstore/detail/qr-code-generator/kjcljdffopfopchbndhhfkpjddjbhjpg
Opis This extension generates a QR code from links and selected text.
Rozmiar pliku 59.1 KB
Liczba instalacji 216
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2014-10-24
Data Publikacji 2014-10-24
Deweloper Spencer Barnes-Israel
Typ Płatności free
Obsługiwane Języki en,es,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "version": "0.3",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "imgs\/qrgenerator-16.png",
        "default_title": "QR Code generator",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "imgs\/qrgenerator-16.png",
        "48": "imgs\/qrgenerator-48.png",
        "128": "imgs\/qrgenerator-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/popup.js"
            ],
            "run_at": "document_end"
        }
    ]
}