TeamConsole
A browser extension that syncs ssh and http bookmarks between team members using a private server.
TeamConsole क्या है?
TeamConsole kclark द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension that syncs ssh and http bookmarks between team members using a private server."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TeamConsole एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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'" } |