Talos-Genesis Bridge
Browser extension to allow bridging of user events between Talos and Genesis.
Talos-Genesis Bridgeคืออะไร?
Talos-Genesis Bridge เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nxgen.cloud และคุณลักษณะหลักของมันคือ "Browser extension to allow bridging of user events between Talos and Genesis."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Talos-Genesis Bridge
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |