Tab Expose

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

Tab Expose là gì?

Tab Expose là một tiện ích mở rộng Chrome được phát triển bởi Delaney Garcia, và tính năng chính của nó là "Spread out your tabs, across your screen... expose style".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Expose

Tải xuống các tệp mở rộng Tab Expose dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Expose Tab Expose
ID knmgkbkehmfklhjokgnfemhldookdmpn
URL Chính Thức https://chromewebstore.google.com/detail/tab-expose/knmgkbkehmfklhjokgnfemhldookdmpn
Mô tả Spread out your tabs, across your screen... expose style
Kích Thước Tệp 17.67 KB
Số Lần Cài Đặt 225
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-12-16
Ngày Phát Hành 2019-12-15
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Delaney Garcia
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}