Tab Expose

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

Что такое Tab Expose?

Tab Expose - это расширение Chrome, разработанное Delaney Garcia, и его основная функция - "Spread out your tabs, across your screen... expose style".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Tab Expose

Скачайте файлы расширений Tab Expose в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Tab Expose Tab Expose
ID knmgkbkehmfklhjokgnfemhldookdmpn
Официальный URL https://chromewebstore.google.com/detail/tab-expose/knmgkbkehmfklhjokgnfemhldookdmpn
Описание Spread out your tabs, across your screen... expose style
Размер файла 17.67 KB
Количество установок 225
Текущая Версия 1.0
Последнее Обновление 2019-12-16
Дата публикации 2019-12-15
Рейтинг 4.00/5 Всего 1 оценок
Разработчик Delaney Garcia
Тип оплаты free
Поддерживаемые языки 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
}