Xerox Device Connector

This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices.

Что такое Xerox Device Connector?

Xerox Device Connector - это расширение Chrome, разработанное https://appgallery.services.xerox.com, и его основная функция - "This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Xerox Device Connector

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

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

                        The Xerox Device Connector, in conjunction with the Xerox App Gallery portal, enables the web browser to communicate with your Xerox networked devices. This extension is utilized when a user attempts to add, update, or remove a device.  Additionally, this extension enables the required communication with Xerox networked devices when a user is installing, uninstalling, or re-installing an app designed for an app-enabled Xerox device.                    

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

Название Xerox Device Connector Xerox Device Connector
ID ojpcfkpecldaeaafcmclkmgabiohlbnl
Официальный URL https://chromewebstore.google.com/detail/xerox-device-connector/ojpcfkpecldaeaafcmclkmgabiohlbnl
Описание This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices.
Размер файла 19.09 KB
Количество установок 38,264
Текущая Версия 5.2.1
Последнее Обновление 2019-10-15
Дата публикации 2019-10-15
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://appgallery.services.xerox.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://appgallery.services.xerox.com
URL страницы помощи http://www.support.xerox.com/support/xerox-app-gallery
URL страницы политики конфиденциальности https://www.xerox.com/en-us/about/privacy-policy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Xerox Device Connector",
    "version": "5.2.1",
    "homepage_url": "https:\/\/appgallery.services.xerox.com",
    "icons": {
        "16": "app_gallery_16.png",
        "32": "app_gallery_32.png",
        "48": "app_gallery_48.png",
        "128": "app_gallery_128.png"
    },
    "description": "This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices.",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "manifest.json",
        "contentscript.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/appgallery.services.xerox.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}