Dashboard Swarm
Manage your dashboards on multiple screen, remotely.
Dashboard Swarmとは何ですか?
Dashboard SwarmはJesusTheHunによって開発されたChromeの拡張機能で、その主な機能は「Manage your dashboards on multiple screen, remotely.」です。
拡張機能のスクリーンショット
Dashboard Swarm拡張機能のCRXファイルをダウンロード
Dashboard Swarm拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |