Simple Tab Carousel

Tab carousel which pauses on a window focus

Simple Tab Carousel란 무엇입니까?

Simple Tab Carousel은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tab carousel which pauses on a window focus"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Automatically cycle through your tabs. Useful for monitoring lots of information on a single screen. Unlike other carousels it stops cycling when the window is focused, and start the carousel again when you focus on something else. This way you can always have a detailed look at something when you need it without disabling the extension. 

Default interval is 10 seconds (10000 milliseconds).

Open source, If you like the extension, don't hesitate to star it ;)
https://github.com/aigoncharov/chrome-tab-carousel

Note:
Icons are borrowed from fontawesome (https://fontawesome.com/icons/sync-alt?style=solid) under this license (https://fontawesome.com/license). Icons are not modified, but converted to the .png.                    

확장 프로그램 기본 정보

이름 Simple Tab Carousel Simple Tab Carousel
ID ogkhchpclioobkplbmkjekalofgddagc
공식 URL https://chromewebstore.google.com/detail/simple-tab-carousel/ogkhchpclioobkplbmkjekalofgddagc
설명 Tab carousel which pauses on a window focus
파일 크기 20.59 KB
설치 횟수 1,650
현재 버전 0.2.0
최근 업데이트 2020-04-26
출시 날짜 2020-04-26
평점 5.00/5 총 2 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/aigoncharov/chrome-tab-carousel
도움말 페이지 URL https://github.com/aigoncharov/chrome-tab-carousel/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Tab Carousel",
    "version": "0.2.0",
    "description": "Tab carousel which pauses on a window focus",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "browser_action": [],
    "options_ui": {
        "page": "dist\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "favicon16.png",
        "32": "favicon32.png",
        "48": "favicon48.png",
        "128": "favicon128.png"
    }
}