Dashboard Swarm
Manage your dashboards on multiple screen, remotely.
Dashboard Swarmคืออะไร?
Dashboard Swarm เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JesusTheHun และคุณลักษณะหลักของมันคือ "Manage your dashboards on multiple screen, remotely."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dashboard Swarm
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |