QR Code Reader
A chrome extension for reading QR code from webpage.
Apa itu QR Code Reader?
QR Code Reader adalah ekstensi Chrome yang dikembangkan oleh QRExt, dan fitur utamanya adalah "A chrome extension for reading QR code from webpage.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi QR Code Reader
Unduh file ekstensi QR Code Reader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | QR Code Reader |
ID | likadllkkidlligfcdhfnnbkjigdkmci |
URL Resmi | https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci |
Deskripsi | A chrome extension for reading QR code from webpage. |
Ukuran File | 435 KB |
Jumlah Instalasi | 238,394 |
Versi Saat Ini | 2.0.1 |
Terakhir Diperbarui | 2023-07-05 |
Tanggal Publikasi | 2018-11-24 |
Penilaian | 3.77/5 Total 57 Penilaian |
Pengembang | QRExt |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://qrcd.org/ |
URL Halaman Bantuan | http://tiny.cc/appshelp |
URL Halaman Kebijakan Privasi | https://qrcd.org/privacy.html |
Bahasa yang Didukung | 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" ] } |