Tab Roulette

Tab slideshow plugin - Awesome for in-office dashboards!

O que é Tab Roulette?

Tab Roulette é uma extensão do Chrome desenvolvida por https://blog.developer-b.com, e sua principal característica é "Tab slideshow plugin - Awesome for in-office dashboards!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Roulette

Baixe arquivos de extensão Tab Roulette no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Tab Roulette Tab Roulette
ID dlgdimppibbgkjbhnfbkgbfgiclmjlch
URL Oficial https://chromewebstore.google.com/detail/tab-roulette/dlgdimppibbgkjbhnfbkgbfgiclmjlch
Descrição Tab slideshow plugin - Awesome for in-office dashboards!
Tamanho do Arquivo 237 KB
Contagem de Instalações 1,250
Versão Atual 0.5
Última Atualização 2013-08-30
Data de Publicação 2013-08-30
Classificação 4.75/5 Total de 12 Avaliações
Desenvolvedor https://blog.developer-b.com
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/kimble/chrome-tab-roulette
Idiomas Suportados 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"
            ]
        }
    ]
}