QR-Code

Show a QR-Code for the current URL (without relying on some third-party API).

Co to jest QR-Code?

QR-Code to rozszerzenie Chrome opracowane przez felix.kaiser, a jego główną funkcją jest „Show a QR-Code for the current URL (without relying on some third-party API).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia QR-Code

Pobierz pliki rozszerzeń QR-Code 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

                        Shows a QR-Code for the current URL, or any other text.

It uses Kazuhiko Arases JavaScript library (http://www.d-project.com/) to draw the QR codes instead of relying on some third-party web API (like all of the other extensions I looked at.).

It's free and open source: https://github.com/fxkr/chrome-qrcode-extension                    

Podstawowe informacje o rozszerzeniu

Nazwa QR-Code QR-Code
ID leicjbimaiecjfljbeikdailcmaadlml
Oficjalny URL https://chromewebstore.google.com/detail/qr-code/leicjbimaiecjfljbeikdailcmaadlml
Opis Show a QR-Code for the current URL (without relying on some third-party API).
Rozmiar pliku 13.5 KB
Liczba instalacji 799
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2017-11-21
Data Publikacji 2017-11-21
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper felix.kaiser
Typ Płatności free
Strona Rozszerzenia https://github.com/fxkr/chrome-qrcode-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QR-Code",
    "description": "Show a QR-Code for the current URL (without relying on some third-party API).",
    "version": "1.0.0",
    "homepage_url": "https:\/\/github.com\/fxkr\/chrome-qrcode-extension",
    "icons": {
        "16": "icon-16x16.png",
        "48": "icon-48x48.png",
        "128": "icon-128x128.png"
    },
    "permissions": [
        "tabs"
    ],
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icon-16x16.png",
        "default_popup": "popup.html"
    }
}