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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}