Dashboard Swarm

Manage your dashboards on multiple screen, remotely.

Apa itu Dashboard Swarm?

Dashboard Swarm adalah ekstensi Chrome yang dikembangkan oleh JesusTheHun, dan fitur utamanya adalah "Manage your dashboards on multiple screen, remotely.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Dashboard Swarm

Unduh file ekstensi Dashboard Swarm dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Dashboard Swarm Dashboard Swarm
ID cohiccdmoofaannbeahbjkhhabppmdnn
URL Resmi https://chromewebstore.google.com/detail/dashboard-swarm/cohiccdmoofaannbeahbjkhhabppmdnn
Deskripsi Manage your dashboards on multiple screen, remotely.
Ukuran File 2.46 MB
Jumlah Instalasi 29
Versi Saat Ini 0.5.4
Terakhir Diperbarui 2018-05-18
Tanggal Publikasi 2018-04-18
Pengembang JesusTheHun
Tipe Pembayaran free
Situs Ekstensi https://github.com/JesusTheHun/dashboard-swarm
URL Halaman Bantuan https://github.com/JesusTheHun/dashboard-swarm/issues
Bahasa yang Didukung 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"
    ]
}