Tab Rotate

Loop through a set of tabs - ideal for a Dashboard or Advertisement Display

Tab Rotate란 무엇입니까?

Tab Rotate은(는) Kevin Sheedy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display"입니다.

확장 프로그램 스크린샷

screenshot

Tab Rotate 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Allows Chrome to automatically cycle through a set of tabs. Ideal for a Dashboard or wall-mounted display.

 - Configured via a JSON file
 - Preloads tabs for smoother transitions
 - Configuration can be loaded from a remote server

NOTE: Does not rotate through your currently open tabs

Support the project on Patreon:
https://www.patreon.com/kevdev                    

확장 프로그램 기본 정보

이름 Tab Rotate Tab Rotate
ID pjgjpabbgnnoohijnillgbckikfkbjed
공식 URL https://chromewebstore.google.com/detail/tab-rotate/pjgjpabbgnnoohijnillgbckikfkbjed
설명 Loop through a set of tabs - ideal for a Dashboard or Advertisement Display
파일 크기 55.01 KB
설치 횟수 32,128
현재 버전 0.6.2
최근 업데이트 2021-09-06
출시 날짜 2019-11-27
평점 4.25/5 총 44 개의 평점
개발자 Kevin Sheedy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/KevinSheedy/chrome-tab-rotate
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Rotate",
    "description": "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display",
    "version": "0.6.2",
    "browser_action": {
        "default_icon": "img\/Play-38.png",
        "default_title": "Start Tab Rotate"
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js",
            "import-analytics.js",
            "hot-reload.js"
        ]
    },
    "icons": {
        "16": "img\/Play-16.png",
        "32": "img\/Play-32.png",
        "48": "img\/Play-48.png",
        "128": "img\/Play-128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/unpkg.com; object-src 'self'",
    "permissions": [
        "storage",
        "https:\/\/ajax.googleapis.com\/",
        "file:\/\/*\/",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}