Tab Expose

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

Tab Exposeとは何ですか?

Tab ExposeはDelaney Garciaによって開発されたChromeの拡張機能で、その主な機能は「Spread out your tabs, across your screen... expose style」です。

拡張機能のスクリーンショット

screenshot
screenshot

Tab Expose拡張機能のCRXファイルをダウンロード

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
}