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://agsdev.azurewebsites.net, и его основная функция - "This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices.".
Снимки экрана расширения
Скачать файл CRX расширения Xerox Device Connector
Скачайте файлы расширений Xerox Device Connector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | Xerox Device Connector |
ID | bbfkmcmbpdnlobcfiokheeohebkohokf |
Официальный URL | https://chromewebstore.google.com/detail/xerox-device-connector/bbfkmcmbpdnlobcfiokheeohebkohokf |
Описание | This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices. |
Размер файла | 19.04 KB |
Количество установок | 233 |
Текущая Версия | 5.2.1 |
Последнее Обновление | 2019-02-01 |
Дата публикации | 2019-01-28 |
Рейтинг | 4.00/5 Всего 2 оценок |
Разработчик | https://agsdev.azurewebsites.net |
Электронная почта | [email protected] |
Тип оплаты | free |
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:\/\/localhost", "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.external.xerox.com\/*", "*:\/\/appgallerydev.services.xerox.com\/*", "*:\/\/appgallerytest.services.xerox.com\/*", "*:\/\/appgallerystaging.services.xerox.com\/*", "*:\/\/agsdev.azurewebsites.net\/*", "*:\/\/localhost\/*" ], "js": [ "contentscript.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |