TeamConsole
A browser extension that syncs ssh and http bookmarks between team members using a private server.
O que é TeamConsole?
TeamConsole é uma extensão do Chrome desenvolvida por kclark, e sua principal característica é "A browser extension that syncs ssh and http bookmarks between team members using a private server.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TeamConsole
Baixe arquivos de extensão TeamConsole 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
Manage SSH and HTML bookmarks across a team using the Chrome browser and a private server. Easily navigate to either SSH or HTTP consoles of your devices in a dropdown tree view. Requires SecureShell extension for SSH bookmarks to function properly. Private server must be running in order for the extension to connect. Server code is found on Github here: https://github.com/tiggus/teamconsole No data is sent to any sources except the server that you control.
Informações Básicas da Extensão
Nome | |
ID | ccngifedgpodlkcjlccboielienafcdf |
URL Oficial | https://chrome.google.com/webstore/detail/teamconsole/ccngifedgpodlkcjlccboielienafcdf |
Descrição | A browser extension that syncs ssh and http bookmarks between team members using a private server. |
Tamanho do Arquivo | 760 KB |
Contagem de Instalações | 11 |
Versão Atual | 0.7 |
Última Atualização | 2015-06-29 |
Data de Publicação | 2015-06-29 |
Desenvolvedor | kclark |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TeamConsole", "short_name": "TeamConsole", "version": "0.7", "description": "A browser extension that syncs ssh and http bookmarks between team members using a private server.", "permissions": [ "bookmarks", "storage", "management" ], "manifest_version": 2, "author": "Kevin Clark ([email protected])", "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "options_page": "options.html", "browser_action": { "default_title": "TeamConsole", "default_icon": "img\/icon-disconnected.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |