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.
扩展基本信息
名称 | 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" ] } |