QR-Code
Show a QR-Code for the current URL (without relying on some third-party API).
Что такое QR-Code?
QR-Code - это расширение Chrome, разработанное felix.kaiser, и его основная функция - "Show a QR-Code for the current URL (without relying on some third-party API).".
Снимки экрана расширения
Скачать файл CRX расширения QR-Code
Скачайте файлы расширений QR-Code в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | QR-Code |
ID | leicjbimaiecjfljbeikdailcmaadlml |
Официальный URL | https://chromewebstore.google.com/detail/qr-code/leicjbimaiecjfljbeikdailcmaadlml |
Описание | Show a QR-Code for the current URL (without relying on some third-party API). |
Размер файла | 13.5 KB |
Количество установок | 799 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2017-11-21 |
Дата публикации | 2017-11-21 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | felix.kaiser |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/fxkr/chrome-qrcode-extension |
Поддерживаемые языки | 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" } } |