Tabulus Rotatum
Automatically rotate through list of URLs with correlating time intervals. Ideal for low CPU dashboards and kiosks. By Cami Blanch
Tabulus Rotatumคืออะไร?
Tabulus Rotatum เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cami Blanch และคุณลักษณะหลักของมันคือ "Automatically rotate through list of URLs with correlating time intervals. Ideal for low CPU dashboards and kiosks. By Cami Blanch"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tabulus Rotatum
ดาวน์โหลดไฟล์ส่วนขยาย Tabulus Rotatum ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tabulus Rotatum is optimized for low CPU kiosk and dashboard setups such as Raspberry Pi, Cubox machines. Tabulus Rotatum takes a given list of URLs and corresponding times (in seconds) and shows each URL for the given amount of time. The first URL is loaded in a background tab and once loaded, the active tab will close and then "sit" on the first URL for the given time interval. This continues and loops for the entire URL list. This is ideal for dashboards and kiosks and can be started with the browser startup. New features: - URLs and time intervals can be loaded from a text webpage. This can be set to auto-load so you can update the URLs remotely. With this feature enabled, every time you restart Tabulus Rotatum the URLs are loaded from the given text webpage. - Bad data is removed. If there is no semicolon or more than 1 semicolon, the line is ignored and removed. If there is no URL and/or time interval, the line is ignored and removed. If the time interval is not a number, the line is ignored or removed. View the source code here https://github.com/camiblanch/Tabulus-Rotatum
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jibnjpmjmkfmcnhekghcbdgkogahkjnc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tabulus-rotatum/jibnjpmjmkfmcnhekghcbdgkogahkjnc |
คำอธิบาย | Automatically rotate through list of URLs with correlating time intervals. Ideal for low CPU dashboards and kiosks. By Cami Blanch |
ขนาดไฟล์ | 309 KB |
จำนวนการติดตั้ง | 381 |
เวอร์ชันปัจจุบัน | 2.2 |
อัปเดตครั้งล่าสุด | 2016-02-01 |
วันที่เผยแพร่ | 2016-01-29 |
คะแนน | 2.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Cami Blanch |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/camiblanch/Tabulus-Rotatum |
URL หน้าช่วยเหลือ | https://github.com/camiblanch/Tabulus-Rotatum |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html" }, "browser_action": { "default_icon": "img\/Magic-Wand-32.png", "default_title": "Tabulus Rotatum - Rotate through list of URLs by loading new tabs and closing the previous." }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/dom.js" ], "run_at": "document_end" } ], "description": "Automatically rotate through list of URLs with correlating time intervals. Ideal for low CPU dashboards and kiosks. By Cami Blanch", "icons": { "128": "img\/Magic-Wand-128.png", "48": "img\/Magic-Wand-48.png" }, "name": "Tabulus Rotatum", "options_page": "options.html", "permissions": [ "tabs", "idle", "*:\/\/*\/*" ], "version": "2.2" } |