Tab Roulette

Tab slideshow plugin - Awesome for in-office dashboards!

Tab Roulette란 무엇입니까?

Tab Roulette은(는) https://blog.developer-b.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tab slideshow plugin - Awesome for in-office dashboards!"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension will cycle through any open tabs. It comes with an option page allowing you to specify how long each tab should be displayed and whether or not it should be reloaded. 

Upon opening the options dialog it'll cycle through all the tabs to take a screenshot making it easier to see which tab you're configuring. 

Keep in mind that this was an evening project and probably contain a lot of rough edges so don't blame me if something catches on fire.                    

확장 프로그램 기본 정보

이름 Tab Roulette Tab Roulette
ID dlgdimppibbgkjbhnfbkgbfgiclmjlch
공식 URL https://chromewebstore.google.com/detail/tab-roulette/dlgdimppibbgkjbhnfbkgbfgiclmjlch
설명 Tab slideshow plugin - Awesome for in-office dashboards!
파일 크기 237 KB
설치 횟수 1,250
현재 버전 0.5
최근 업데이트 2013-08-30
출시 날짜 2013-08-30
평점 4.75/5 총 12 개의 평점
개발자 https://blog.developer-b.com
결제 유형 free
도움말 페이지 URL https://github.com/kimble/chrome-tab-roulette
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Roulette",
    "version": "0.5",
    "description": "Tab slideshow plugin - Awesome for in-office dashboards!",
    "options_page": "src\/view\/mission-control.html",
    "browser_action": {
        "default_icon": "src\/images\/icon_19x19_grey.png",
        "default_title": "Tab roulette"
    },
    "background": {
        "scripts": [
            "src\/jslib\/underscore-1.4.3.js",
            "src\/js\/lib.js",
            "src\/js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "background",
        ""
    ],
    "icons": {
        "16": "src\/images\/icon_16x16.png",
        "48": "src\/images\/icon_48x48.png",
        "128": "src\/images\/icon_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/css\/content-script.css"
            ],
            "js": [
                "src\/jslib\/jquery-1.8.3.js",
                "src\/js\/content-script.js"
            ]
        }
    ]
}