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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة TeamConsole

قم بتنزيل ملفات الامتداد TeamConsole بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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.                    

معلومات أساسية عن التمديد

الاسم TeamConsole TeamConsole
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'"
}