TeamConsole

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

TeamConsole란 무엇입니까?

TeamConsole은(는) kclark에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that syncs ssh and http bookmarks between team members using a private server."입니다.

확장 프로그램 스크린샷

screenshot

TeamConsole 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 TeamConsole TeamConsole
ID ccngifedgpodlkcjlccboielienafcdf
공식 URL https://chrome.google.com/webstore/detail/teamconsole/ccngifedgpodlkcjlccboielienafcdf
설명 A browser extension that syncs ssh and http bookmarks between team members using a private server.
파일 크기 760 KB
설치 횟수 11
현재 버전 0.7
최근 업데이트 2015-06-29
출시 날짜 2015-06-29
개발자 kclark
결제 유형 free
지원되는 언어 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'"
}