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은(는) https://appgallery.services.xerox.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Xerox Device Connector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}