Dashboard Swarm
Manage your dashboards on multiple screen, remotely.
Was ist Dashboard Swarm?
Dashboard Swarm ist eine Chrome-Erweiterung, die von JesusTheHun entwickelt wurde, und ihr Hauptmerkmal ist "Manage your dashboards on multiple screen, remotely.".
Erweiterungsscreenshots
Dashboard Swarm-Erweiterungs-CRX-Datei herunterladen
Laden Sie Dashboard Swarm-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cohiccdmoofaannbeahbjkhhabppmdnn |
| Offizielle URL | https://chromewebstore.google.com/detail/dashboard-swarm/cohiccdmoofaannbeahbjkhhabppmdnn |
| Beschreibung | Manage your dashboards on multiple screen, remotely. |
| Dateigröße | 2.46 MB |
| Installationsanzahl | 29 |
| Aktuelle Version | 0.5.4 |
| Letztes Update | 2018-05-18 |
| Veröffentlichungsdatum | 2018-04-18 |
| Entwickler | JesusTheHun |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/JesusTheHun/dashboard-swarm |
| Hilfeseite URL | https://github.com/JesusTheHun/dashboard-swarm/issues |
| Unterstützte Sprachen | 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"
]
} | |