TeamConsole

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

TeamConsole là gì?

TeamConsole là một tiện ích mở rộng Chrome được phát triển bởi kclark, và tính năng chính của nó là "A browser extension that syncs ssh and http bookmarks between team members using a private server.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TeamConsole

Tải xuống các tệp mở rộng TeamConsole dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TeamConsole TeamConsole
ID ccngifedgpodlkcjlccboielienafcdf
URL Chính Thức https://chrome.google.com/webstore/detail/teamconsole/ccngifedgpodlkcjlccboielienafcdf
Mô tả A browser extension that syncs ssh and http bookmarks between team members using a private server.
Kích Thước Tệp 760 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2015-06-29
Ngày Phát Hành 2015-06-29
Nhà Phát Triển kclark
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}