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.」です。
拡張機能のスクリーンショット
TeamConsole拡張機能のCRXファイルをダウンロード
TeamConsole拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
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'" } |