Tab Expose

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

Wat is Tab Expose?

Tab Expose is een Chrome-extensie ontwikkeld door Delaney Garcia, en de belangrijkste functie is "Spread out your tabs, across your screen... expose style".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Tab Expose

Download Tab Expose-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Tab Expose Tab Expose
ID knmgkbkehmfklhjokgnfemhldookdmpn
Officiële URL https://chromewebstore.google.com/detail/tab-expose/knmgkbkehmfklhjokgnfemhldookdmpn
Beschrijving Spread out your tabs, across your screen... expose style
Bestandsgrootte 17.67 KB
Aantal Installaties 225
Huidige Versie 1.0
Laatst Bijgewerkt 2019-12-16
Publicatiedatum 2019-12-15
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Delaney Garcia
Betalingswijze free
Ondersteunde Talen 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
}