QR Code Reader
A chrome extension for reading QR code from webpage.
Cos'è QR Code Reader?
QR Code Reader è un'estensione di Chrome sviluppata da QRExt, e la sua funzione principale è "A chrome extension for reading QR code from webpage.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione QR Code Reader
Scarica i file di estensione QR Code Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | likadllkkidlligfcdhfnnbkjigdkmci |
URL Ufficiale | https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci |
Descrizione | A chrome extension for reading QR code from webpage. |
Dimensione del File | 435 KB |
Conteggio Installazioni | 238,394 |
Versione Corrente | 2.0.1 |
Ultimo Aggiornamento | 2023-07-05 |
Data di Pubblicazione | 2018-11-24 |
Valutazione | 3.77/5 Totale 57 Valutazioni |
Sviluppatore | QRExt |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://qrcd.org/ |
URL della Pagina di Aiuto | http://tiny.cc/appshelp |
URL della Pagina della Politica sulla Privacy | https://qrcd.org/privacy.html |
Lingue Supportate | 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" ] } |