Talos-Genesis Bridge
Browser extension to allow bridging of user events between Talos and Genesis.
O que é Talos-Genesis Bridge?
Talos-Genesis Bridge é uma extensão do Chrome desenvolvida por https://nxgen.cloud, e sua principal característica é "Browser extension to allow bridging of user events between Talos and Genesis.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Talos-Genesis Bridge
Baixe arquivos de extensão Talos-Genesis Bridge no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Talos-Genesis Bridge |
ID | aphhmbnmncbnlfkljeafmaimbdpnekgl |
URL Oficial | https://chromewebstore.google.com/detail/talos-genesis-bridge/aphhmbnmncbnlfkljeafmaimbdpnekgl |
Descrição | Browser extension to allow bridging of user events between Talos and Genesis. |
Tamanho do Arquivo | 19.01 KB |
Contagem de Instalações | 293 |
Versão Atual | 0.0.4 |
Última Atualização | 2022-03-22 |
Data de Publicação | 2019-11-15 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://nxgen.cloud |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |