Talos-Genesis Bridge

Browser extension to allow bridging of user events between Talos and Genesis.

Talos-Genesis Bridge란 무엇입니까?

Talos-Genesis Bridge은(는) https://nxgen.cloud에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension to allow bridging of user events between Talos and Genesis."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Talos-Genesis Bridge 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is to be used to link the Talos Event Management with the Genesis Video Alarm Management. The bridge ensures synchronization of alarms and the respective pictures between the two system in the operator screen. The extension works in the background and has no user interaction.                    

확장 프로그램 기본 정보

이름 Talos-Genesis Bridge Talos-Genesis Bridge
ID aphhmbnmncbnlfkljeafmaimbdpnekgl
공식 URL https://chromewebstore.google.com/detail/talos-genesis-bridge/aphhmbnmncbnlfkljeafmaimbdpnekgl
설명 Browser extension to allow bridging of user events between Talos and Genesis.
파일 크기 19.01 KB
설치 횟수 293
현재 버전 0.0.4
최근 업데이트 2022-03-22
출시 날짜 2019-11-15
평점 5.00/5 총 1 개의 평점
개발자 https://nxgen.cloud
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Talos-Genesis Bridge",
    "version": "0.0.4",
    "description": "Browser extension to allow bridging of user events between Talos and Genesis.",
    "manifest_version": 3,
    "background": {
        "service_worker": "messageBroker.js"
    },
    "action": {
        "default_popup": "\/popup.html",
        "default_icon": {
            "128": "\/images\/nxg128.png"
        }
    },
    "icons": {
        "128": "\/images\/nxg128.png"
    },
    "permissions": [],
    "host_permissions": [
        "http:\/\/localhost:4200\/*",
        "http:\/\/localhost:1880\/*",
        "https:\/\/talos-app.io\/*",
        "https:\/\/talos-staging.io\/*",
        "https:\/\/talos-staging.tech.sitasys.com\/*",
        "https:\/\/*.nxgen.cloud\/*",
        "https:\/\/nxgen.cloud\/*",
        "https:\/\/talos.evalink.io\/*",
        "https:\/\/talos-staging.evalink.io\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:4200\/*",
                "http:\/\/localhost:1880\/*",
                "https:\/\/talos-app.io\/*",
                "https:\/\/talos-staging.io\/*",
                "https:\/\/talos-staging.tech.sitasys.com\/*",
                "https:\/\/*.nxgen.cloud\/*",
                "https:\/\/nxgen.cloud\/*",
                "https:\/\/talos.evalink.io\/*",
                "https:\/\/talos-staging.evalink.io\/*"
            ],
            "all_frames": true,
            "js": [
                "pageScript.js"
            ]
        }
    ]
}