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
}