URC - URL Scanner

To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!

Что такое URC - URL Scanner?

URC - URL Scanner - это расширение Chrome, разработанное https://code.rendrr.xyz/urc, и его основная функция - "To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения URC - URL Scanner

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

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

                        To experience a better way to sending links to your associates, this extension comes in handy. one needs to add this extension and then the URL that the person intends to send will automatically get converted into QR Code so that one can just scan this code and open the intended website. This is easy, simple and convenient!                    

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

Название URC - URL Scanner URC - URL Scanner
ID fhopklpclhecjilkakgbcogngidomkcl
Официальный URL https://chromewebstore.google.com/detail/urc-url-scanner/fhopklpclhecjilkakgbcogngidomkcl
Описание To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!
Размер файла 181 KB
Количество установок 30
Текущая Версия 1.0.4
Последнее Обновление 2017-10-10
Дата публикации 2017-10-10
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://code.rendrr.xyz/urc
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://code.rendrr.xyz/urc/
URL страницы политики конфиденциальности https://rakcode.com/privacypolicy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URC - URL Scanner",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!",
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "chrome:\/\/favicon\/",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jquery.popupoverlay.js",
                "js\/jquery-qrcode.js",
                "js\/inject.js"
            ]
        }
    ],
    "chrome_url_overrides": {
        "history": "history.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}