Tabby - Window and Tab Manager

Manage great amounts of windows and tabs at ease.

Tabby - Window and Tab Managerคืออะไร?

Tabby - Window and Tab Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bluesky42624 และคุณลักษณะหลักของมันคือ "Manage great amounts of windows and tabs at ease."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tabby - Window and Tab Manager

ดาวน์โหลดไฟล์ส่วนขยาย Tabby - Window and Tab Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tabby is a Window and Tab Manager that helps you easily manage a lot of windows and tabs.
It can help you open, close, pin, and do many other things on tabs and windows quickly.
You can also drag around tabs to move it, open last used tab/window by using some simple keyboard shortcuts, and much more!
You can even save all you windows and tabs for later with just one click and Tabby will even save the scroll position and video progress for you when it can!

There is also a Mozilla Firefox version!
https://addons.mozilla.org/en-US/firefox/addon/tabby-window-tab-manager/

If you have some sweet ideas on how to improve Tabby, or if you found a bug in Tabby, go here to tell me about it:
https://goo.gl/forms/hdEdjHo6RPwYCiJC2

Keyboard shortcuts:
--- Open last used tab (on Mac and Linux): Ctrl+1
--- Open last used tab (on Windows): Alt+1
--- Open last used window (on Mac and Linux): Ctrl+2
--- Open last used window (on Windows): Alt+2

Permissions Use:
"Access browser tabs": To manage tabs
"Storage": To store the options

Tabby will always be free and open-source; Check out it's GitHub page: https://github.com/Bill13579/tabby

Check out my website: https://www.IdeaAcademy.com
Japanese version: https://www.BenGoShi.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tabby - Window and Tab Manager Tabby - Window and Tab Manager
ID jmfopcggkdciofgckgnhcoacjjipopjc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tabby-window-and-tab-mana/jmfopcggkdciofgckgnhcoacjjipopjc
คำอธิบาย Manage great amounts of windows and tabs at ease.
ขนาดไฟล์ 161 KB
จำนวนการติดตั้ง 1,127
เวอร์ชันปัจจุบัน 2.0.3
อัปเดตครั้งล่าสุด 2022-08-22
วันที่เผยแพร่ 2019-08-30
คะแนน 4.13/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา bluesky42624
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Bill13579/tabby
URL หน้าช่วยเหลือ https://github.com/Bill13579/tabby
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabby - Window and Tab Manager",
    "version": "2.0.3",
    "description": "Manage great amounts of windows and tabs at ease.",
    "icons": {
        "48": "icons\/tabby-48.png",
        "96": "icons\/tabby-96.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/tabby-32.png",
        "default_title": "Tabby",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "commands": {
        "last-used-tab": {
            "suggested_key": {
                "default": "Ctrl+1",
                "windows": "Alt+1",
                "mac": "MacCtrl+1"
            },
            "description": "Open last used tab"
        },
        "last-used-window": {
            "suggested_key": {
                "default": "Ctrl+2",
                "windows": "Alt+2",
                "mac": "MacCtrl+2"
            },
            "description": "Open last used window"
        }
    }
}