X QRCode

A powerfull chrome extension for qrcode encoding and decoding.

Что такое X QRCode?

X QRCode - это расширение Chrome, разработанное nuintun, и его основная функция - "A powerfull chrome extension for qrcode encoding and decoding.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения X QRCode

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

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

                        The extension can quickly convert the tab address to a QRCode and support converting the link and selected text in the page to a QRCode and parsing the QRCode image in the page.                    

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

Название X QRCode X QRCode
ID afjgnjcplfimlceahcgancmlnmbkgmhf
Официальный URL https://chromewebstore.google.com/detail/x-qrcode/afjgnjcplfimlceahcgancmlnmbkgmhf
Описание A powerfull chrome extension for qrcode encoding and decoding.
Размер файла 46.77 KB
Количество установок 221
Текущая Версия 0.3.3
Последнее Обновление 2022-01-21
Дата публикации 2019-05-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик nuintun
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/nuintun/x-qrcode
URL страницы помощи https://github.com/nuintun/x-qrcode
Поддерживаемые языки en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.3.3",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "icons": {
        "16": "images\/qrcode-16.png",
        "32": "images\/qrcode-32.png",
        "48": "images\/qrcode-48.png",
        "128": "images\/qrcode-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/qrcode-16.png",
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "homepage_url": "https:\/\/github.com\/nuintun\/x-qrcode",
    "permissions": [
        "activeTab",
        "contextMenus",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}