Tab Expose

Spread out your tabs, across your screen... expose style

Cos'è Tab Expose?

Tab Expose è un'estensione di Chrome sviluppata da Delaney Garcia, e la sua funzione principale è "Spread out your tabs, across your screen... expose style".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tab Expose

Scarica i file di estensione Tab Expose 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

                        This is a simple extension to 'spread out' your tabs in a single window, similar to the exposé feature on macOS. 

When you click the extnesion, it will evenly distribute your tabs across your screen in separate windows

this is useful for 2+ tab sessions, where you want to read two (or more) things at once.


currently, only 8 tabs (per window) are supported.                    

Informazioni di Base sull'Estensione

Nome Tab Expose Tab Expose
ID knmgkbkehmfklhjokgnfemhldookdmpn
URL Ufficiale https://chromewebstore.google.com/detail/tab-expose/knmgkbkehmfklhjokgnfemhldookdmpn
Descrizione Spread out your tabs, across your screen... expose style
Dimensione del File 17.67 KB
Conteggio Installazioni 225
Versione Corrente 1.0
Ultimo Aggiornamento 2019-12-16
Data di Pubblicazione 2019-12-15
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Delaney Garcia
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Expose",
    "description": "Spread out your tabs, across your screen... expose style",
    "version": "1.0",
    "homepage_url": "https:\/\/foobar.com",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Tab Expose",
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}