Dashboard Swarm

Manage your dashboards on multiple screen, remotely.

Dashboard Swarm क्या है?

Dashboard Swarm JesusTheHun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage your dashboards on multiple screen, remotely."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Dashboard Swarm एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
    ]
}