QR Code Reader
A chrome extension for reading QR code from webpage.
Что такое QR Code Reader?
QR Code Reader - это расширение Chrome, разработанное QRExt, и его основная функция - "A chrome extension for reading QR code from webpage.".
Снимки экрана расширения
Скачать файл CRX расширения QR Code Reader
Скачайте файлы расширений QR Code Reader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | QR Code Reader |
ID | likadllkkidlligfcdhfnnbkjigdkmci |
Официальный URL | https://chromewebstore.google.com/detail/qr-code-reader/likadllkkidlligfcdhfnnbkjigdkmci |
Описание | A chrome extension for reading QR code from webpage. |
Размер файла | 435 KB |
Количество установок | 238,394 |
Текущая Версия | 2.0.1 |
Последнее Обновление | 2023-07-05 |
Дата публикации | 2018-11-24 |
Рейтинг | 3.77/5 Всего 57 оценок |
Разработчик | QRExt |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://qrcd.org/ |
URL страницы помощи | http://tiny.cc/appshelp |
URL страницы политики конфиденциальности | https://qrcd.org/privacy.html |
Поддерживаемые языки | 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" ] } |