TeamConsole

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

Apa itu TeamConsole?

TeamConsole adalah ekstensi Chrome yang dikembangkan oleh kclark, dan fitur utamanya adalah "A browser extension that syncs ssh and http bookmarks between team members using a private server.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi TeamConsole

Unduh file ekstensi TeamConsole dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama TeamConsole TeamConsole
ID ccngifedgpodlkcjlccboielienafcdf
URL Resmi https://chrome.google.com/webstore/detail/teamconsole/ccngifedgpodlkcjlccboielienafcdf
Deskripsi A browser extension that syncs ssh and http bookmarks between team members using a private server.
Ukuran File 760 KB
Jumlah Instalasi 11
Versi Saat Ini 0.7
Terakhir Diperbarui 2015-06-29
Tanggal Publikasi 2015-06-29
Pengembang kclark
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}