Tab Expose

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

Was ist Tab Expose?

Tab Expose ist eine Chrome-Erweiterung, die von Delaney Garcia entwickelt wurde, und ihr Hauptmerkmal ist "Spread out your tabs, across your screen... expose style".

Erweiterungsscreenshots

screenshot
screenshot

Tab Expose-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Expose-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tab Expose Tab Expose
ID knmgkbkehmfklhjokgnfemhldookdmpn
Offizielle URL https://chromewebstore.google.com/detail/tab-expose/knmgkbkehmfklhjokgnfemhldookdmpn
Beschreibung Spread out your tabs, across your screen... expose style
Dateigröße 17.67 KB
Installationsanzahl 225
Aktuelle Version 1.0
Letztes Update 2019-12-16
Veröffentlichungsdatum 2019-12-15
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler Delaney Garcia
Zahlungsart free
Unterstützte Sprachen 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
}