Tab Expose

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

Co to jest Tab Expose?

Tab Expose to rozszerzenie Chrome opracowane przez Delaney Garcia, a jego główną funkcją jest „Spread out your tabs, across your screen... expose style”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tab Expose

Pobierz pliki rozszerzeń Tab Expose w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Expose Tab Expose
ID knmgkbkehmfklhjokgnfemhldookdmpn
Oficjalny URL https://chromewebstore.google.com/detail/tab-expose/knmgkbkehmfklhjokgnfemhldookdmpn
Opis Spread out your tabs, across your screen... expose style
Rozmiar pliku 17.67 KB
Liczba instalacji 225
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-12-16
Data Publikacji 2019-12-15
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper Delaney Garcia
Typ Płatności free
Obsługiwane Języki 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
}