Fullscreen Tab Bar

Fullscreen tab bar based on the style of qutebrowser.

Cos'è Fullscreen Tab Bar?

Fullscreen Tab Bar è un'estensione di Chrome sviluppata da Josh Medeiros, e la sua funzione principale è "Fullscreen tab bar based on the style of qutebrowser.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Fullscreen Tab Bar

Scarica i file di estensione Fullscreen Tab Bar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Fullscreen Tab Bar Fullscreen Tab Bar
ID hlackdnjlfblchoenkpcbbophehmeijb
URL Ufficiale https://chromewebstore.google.com/detail/fullscreen-tab-bar/hlackdnjlfblchoenkpcbbophehmeijb
Descrizione Fullscreen tab bar based on the style of qutebrowser.
Dimensione del File 6.28 KB
Conteggio Installazioni 387
Versione Corrente 0.2
Ultimo Aggiornamento 2016-02-06
Data di Pubblicazione 2016-02-05
Valutazione 2.96/5 Totale 25 Valutazioni
Sviluppatore Josh Medeiros
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JoshMedeiros/Chrome-Fullscreen-Tab-Bar
Lingue Supportate 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"
    ]
}