TeamConsole

A browser extension that syncs ssh and http bookmarks between team members using a private server.

¿Qué es TeamConsole?

TeamConsole es una extensión de Chrome desarrollada por kclark, y su función principal es "A browser extension that syncs ssh and http bookmarks between team members using a private server.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión TeamConsole

Descarga archivos de extensión TeamConsole en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre TeamConsole TeamConsole
ID ccngifedgpodlkcjlccboielienafcdf
URL Oficial https://chrome.google.com/webstore/detail/teamconsole/ccngifedgpodlkcjlccboielienafcdf
Descripción A browser extension that syncs ssh and http bookmarks between team members using a private server.
Tamaño del Archivo 760 KB
Cantidad de Instalaciones 11
Versión Actual 0.7
Última Actualización 2015-06-29
Fecha de Publicación 2015-06-29
Desarrollador kclark
Tipo de Pago free
Idiomas Soportados 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'"
}