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
}