TeamConsole
A browser extension that syncs ssh and http bookmarks between team members using a private server.
Qu'est-ce que TeamConsole ?
TeamConsole est une extension Chrome développée par kclark, et sa fonction principale est "A browser extension that syncs ssh and http bookmarks between team members using a private server.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TeamConsole
Téléchargez les fichiers d'extension TeamConsole au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ccngifedgpodlkcjlccboielienafcdf |
URL Officiel | https://chrome.google.com/webstore/detail/teamconsole/ccngifedgpodlkcjlccboielienafcdf |
Description | A browser extension that syncs ssh and http bookmarks between team members using a private server. |
Taille du Fichier | 760 KB |
Nombre d'Installations | 11 |
Version Actuelle | 0.7 |
Dernière Mise à Jour | 2015-06-29 |
Date de Publication | 2015-06-29 |
Développeur | kclark |
Type de Paiement | free |
Langues Prises en Charge | 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'" } |