QReaderX - QR Code Reader

QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs

Что такое QReaderX - QR Code Reader?

QReaderX - QR Code Reader - это расширение Chrome, разработанное qreaderxapp, и его основная функция - "QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs".

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

screenshot
screenshot

Скачать файл CRX расширения QReaderX - QR Code Reader

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

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

                        QReaderX is an extension that helps users to view contents of the QR Code displayed on any website just by hovering over it. It also gives warning to the user if the QR Code is not safe to open.

This enables users to make an informed decision instead of opening the QR Code directly and potentially protect them from getting landed onto an unsafe website

Enjoy Safe QR Codes!                    

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

Название QReaderX - QR Code Reader QReaderX - QR Code Reader
ID ehldnpongcmddeadpnmoikamdpjmfjph
Официальный URL https://chromewebstore.google.com/detail/qreaderx-qr-code-reader/ehldnpongcmddeadpnmoikamdpjmfjph
Описание QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs
Размер файла 952 KB
Количество установок 530
Текущая Версия 1.1.4
Последнее Обновление 2021-02-06
Дата публикации 2021-02-06
Рейтинг 4.86/5 Всего 7 оценок
Разработчик qreaderxapp
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://qreaderx.com/
URL страницы помощи https://qreaderx.com/help
URL страницы политики конфиденциальности https://qreaderx.com/privacy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QReaderX - QR Code Reader",
    "description": "QReaderX decodes QR Codes displayed on the sites and gives warnings for unsafe URLs",
    "version": "1.1.4",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/logo_16.png",
        "48": "assets\/logo_48.png",
        "128": "assets\/logo_128.png"
    },
    "browser_action": {
        "default_title": "QReaderX",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "presistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}