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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically rotate through list of URLs with correlating time intervals. Ideal for low CPU dashboards and kiosks. By Cami Blanch"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tabulus Rotatum 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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                    

확장 프로그램 기본 정보

이름 Tabulus Rotatum 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"
}