Dashboard Swarm

Manage your dashboards on multiple screen, remotely.

ما هو Dashboard Swarm؟

Dashboard Swarm هو إضافة Chrome تم تطويرها بواسطة JesusTheHun، والميزة الرئيسية لها هي "Manage your dashboards on multiple screen, remotely.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Dashboard Swarm

قم بتنزيل ملفات الامتداد Dashboard Swarm بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Current features set :

* Remote control
* Multi-screens support
* Add tab
* Custom tab name
* Close tab
* Refresh tab
* Move tab from one screen to another
* Start & stop rotation
* Zoom tab
* Scroll tab
* Send tab to foreground
* Change tab order
* Rotation speed
* Tab crash restoration
* Auto-refresh tab

Enable you to slideshow tabs in multiple windows on multiple screens, remotely.

Run the server ( https://github.com/JesusTheHun/dashboard-swarm/tree/master/server ) on any pc or server, and you're good to go.

This extension is fully open source. Watch, star and fork https://github.com/JesusTheHun/dashboard-swarm

Please report any issue you meet or any request.                    

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

الاسم Dashboard Swarm Dashboard Swarm
ID cohiccdmoofaannbeahbjkhhabppmdnn
عنوان URL الرسمي https://chromewebstore.google.com/detail/dashboard-swarm/cohiccdmoofaannbeahbjkhhabppmdnn
الوصف Manage your dashboards on multiple screen, remotely.
حجم الملف 2.46 MB
عدد التثبيتات 29
النسخة الحالية 0.5.4
آخر تحديث 2018-05-18
تاريخ النشر 2018-04-18
المطور JesusTheHun
نوع الدفع free
موقع الإضافة https://github.com/JesusTheHun/dashboard-swarm
عنوان صفحة المساعدة https://github.com/JesusTheHun/dashboard-swarm/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dashboard Swarm",
    "description": "Manage your dashboards on multiple screen, remotely.",
    "version": "0.5.4",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Dashboard Swarm"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*"
            ],
            "css": [
                "contentScript.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "background",
        "system.display",
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "kraken.gif"
    ]
}