URL to QR code converter

This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.

Что такое URL to QR code converter?

URL to QR code converter - это расширение Chrome, разработанное https://sites.google.com/site/fujundu, и его основная функция - "This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения URL to QR code converter

Скачайте файлы расширений URL to QR code converter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension converts the url of the page you are viewing into a QR code, so that you can scan it with your phone to share the url.

It can also convert text into QR code.                    

Основная информация о расширении

Название URL to QR code converter URL to QR code converter
ID cnbelooiikkmhknahgkckaikndlmlhfd
Официальный URL https://chromewebstore.google.com/detail/url-to-qr-code-converter/cnbelooiikkmhknahgkckaikndlmlhfd
Описание This extension shows the QR code for the url of the current page or the text you input. You can save the QR code as a png file.
Размер файла 46.83 KB
Количество установок 4,354
Текущая Версия 0.4
Последнее Обновление 2017-02-22
Дата публикации 2017-02-22
Рейтинг 4.00/5 Всего 4 оценок
Разработчик https://sites.google.com/site/fujundu
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/fjdu/URL-to-QR-code
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL to QR code converter",
    "short_name": "URL to QR",
    "description": "This extension shows the QR code for the url of the current page or the text you input.  You can save the QR code as a png file.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "qrcode.js",
                "jquery.qrcode.js",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}