QR Code Reader
A chrome extension for reading QR code from webpage.
Co to jest QR Code Reader?
QR Code Reader to rozszerzenie Chrome opracowane przez QRExt, a jego główną funkcją jest „A chrome extension for reading QR code from webpage.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia QR Code Reader
Pobierz pliki rozszerzeń QR Code Reader 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
If there is a QR code on the webpage you are browsing, How do you know the content of that QR Code. Don't Worry, this extension comes to the rescue. QR Code Reader can show the content from the current webpage for you. Usage: Click extension icon or use `Command/Ctrl+Shift+S` shortcut to read QR code on current tab. Known Issues: Can't read multiple QR codes in one page. Unable to decode some QR code.
Podstawowe informacje o rozszerzeniu
Nazwa | QR Code Reader |
ID | likadllkkidlligfcdhfnnbkjigdkmci |
Oficjalny URL | https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci |
Opis | A chrome extension for reading QR code from webpage. |
Rozmiar pliku | 435 KB |
Liczba instalacji | 238,394 |
Aktualna Wersja | 2.0.1 |
Ostatnia Aktualizacja | 2023-07-05 |
Data Publikacji | 2018-11-24 |
Ocena | 3.77/5 Łącznie 57 Oceny |
Deweloper | QRExt |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://qrcd.org/ |
Adres URL Strony Pomocy | http://tiny.cc/appshelp |
Adres URL Strony Polityki Prywatności | https://qrcd.org/privacy.html |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "QR Code Reader", "description": "A chrome extension for reading QR code from webpage.", "version": "2.0.1", "manifest_version": 3, "background": { "service_worker": "service_worker.js", "type": "module" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_title": "QR Code Reader", "default_popup": "popup.html" }, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "permissions": [ "tabs", "activeTab", "unlimitedStorage", "storage" ] } |