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 Cami Blanch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically rotate through list of URLs with correlating time intervals. Ideal for low CPU dashboards and kiosks. By Cami Blanch"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tabulus Rotatum एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |