Dashboard Swarm

Manage your dashboards on multiple screen, remotely.

O que é Dashboard Swarm?

Dashboard Swarm é uma extensão do Chrome desenvolvida por JesusTheHun, e sua principal característica é "Manage your dashboards on multiple screen, remotely.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Dashboard Swarm

Baixe arquivos de extensão Dashboard Swarm no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Dashboard Swarm Dashboard Swarm
ID cohiccdmoofaannbeahbjkhhabppmdnn
URL Oficial https://chromewebstore.google.com/detail/dashboard-swarm/cohiccdmoofaannbeahbjkhhabppmdnn
Descrição Manage your dashboards on multiple screen, remotely.
Tamanho do Arquivo 2.46 MB
Contagem de Instalações 29
Versão Atual 0.5.4
Última Atualização 2018-05-18
Data de Publicação 2018-04-18
Desenvolvedor JesusTheHun
Tipo de Pagamento free
Site da Extensão https://github.com/JesusTheHun/dashboard-swarm
URL da Página de Ajuda https://github.com/JesusTheHun/dashboard-swarm/issues
Idiomas Suportados 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"
    ]
}