TeamConsole
A browser extension that syncs ssh and http bookmarks between team members using a private server.
TeamConsoleคืออะไร?
TeamConsole เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kclark และคุณลักษณะหลักของมันคือ "A browser extension that syncs ssh and http bookmarks between team members using a private server."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TeamConsole
ดาวน์โหลดไฟล์ส่วนขยาย 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'" } |