Fullscreen Tab Bar

Fullscreen tab bar based on the style of qutebrowser.

O que é Fullscreen Tab Bar?

Fullscreen Tab Bar é uma extensão do Chrome desenvolvida por Josh Medeiros, e sua principal característica é "Fullscreen tab bar based on the style of qutebrowser.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Fullscreen Tab Bar

Baixe arquivos de extensão Fullscreen Tab Bar 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

                        An extension to add a tab bar to the top of Chrome based on the style of qutebrowser's.                    

Informações Básicas da Extensão

Nome Fullscreen Tab Bar Fullscreen Tab Bar
ID hlackdnjlfblchoenkpcbbophehmeijb
URL Oficial https://chromewebstore.google.com/detail/fullscreen-tab-bar/hlackdnjlfblchoenkpcbbophehmeijb
Descrição Fullscreen tab bar based on the style of qutebrowser.
Tamanho do Arquivo 6.28 KB
Contagem de Instalações 387
Versão Atual 0.2
Última Atualização 2016-02-06
Data de Publicação 2016-02-05
Classificação 2.96/5 Total de 25 Avaliações
Desenvolvedor Josh Medeiros
Tipo de Pagamento free
Site da Extensão https://github.com/JoshMedeiros/Chrome-Fullscreen-Tab-Bar
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fullscreen Tab Bar",
    "description": "Fullscreen tab bar based on the style of qutebrowser.",
    "author": "Josh Medeiros",
    "version": "0.2",
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "tabs.html"
    ]
}