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.”。
擴展截圖
下載Talos-Genesis Bridge擴展crx文件
下載Talos-Genesis Bridge擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | aphhmbnmncbnlfkljeafmaimbdpnekgl |
官方網址 | 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" ] } ] } |