Dashboard Swarm

Manage your dashboards on multiple screen, remotely.

Dashboard Swarm란 무엇입니까?

Dashboard Swarm은(는) JesusTheHun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage your dashboards on multiple screen, remotely."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dashboard Swarm 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}