Dashboard Swarm
Manage your dashboards on multiple screen, remotely.
Qu'est-ce que Dashboard Swarm ?
Dashboard Swarm est une extension Chrome développée par JesusTheHun, et sa fonction principale est "Manage your dashboards on multiple screen, remotely.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Dashboard Swarm
Téléchargez les fichiers d'extension Dashboard Swarm au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Dashboard Swarm |
ID | cohiccdmoofaannbeahbjkhhabppmdnn |
URL Officiel | https://chromewebstore.google.com/detail/dashboard-swarm/cohiccdmoofaannbeahbjkhhabppmdnn |
Description | Manage your dashboards on multiple screen, remotely. |
Taille du Fichier | 2.46 MB |
Nombre d'Installations | 29 |
Version Actuelle | 0.5.4 |
Dernière Mise à Jour | 2018-05-18 |
Date de Publication | 2018-04-18 |
Développeur | JesusTheHun |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/JesusTheHun/dashboard-swarm |
URL de la Page d'Aide | https://github.com/JesusTheHun/dashboard-swarm/issues |
Langues Prises en Charge | 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" ] } |