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
官方網址 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
}