Vertical Tabs Side Panel

★ Simplicity defines us - NOW WITH TREE VIEW! ★ Open shortcut, CTRL + i (windows), COMMAND + e (macOS) and CTRL + q (linux)…

Vertical Tabs Side Panelคืออะไร?

Vertical Tabs Side Panel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bruno Braga และคุณลักษณะหลักของมันคือ "★ Simplicity defines us - NOW WITH TREE VIEW! ★ Open shortcut, CTRL + i (windows), COMMAND + e (macOS) and CTRL + q (linux)…"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vertical Tabs Side Panel

ดาวน์โหลดไฟล์ส่วนขยาย Vertical Tabs Side Panel ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        ★ Simplicity defines us - NOW WITH TREE VIEW!

★ Open shortcut, CTRL + i (windows), COMMAND + e (macOS) and CTRL + q (linux)

Vertical Tabs View allow you to easily access and search your tabs, using a vertically stacked UI. It also allows you to open, sort and close individual or a group of tabs.

This extension is very useful for those who end up with many tabs open without knowing the last time you even interacted with them, allowing one to easily get rid of old tabs. It also makes it easy to spot duplicated tabs and to navigate to recently opened ones.

See https://www.youtube.com/watch?v=8ow6f5zWRLI for details on how to use it.

Note: Chrome shows a scary popup regarding Vertical Tabs View accessing your browser history. We do react to new tabs as a way to store LOCALLY the last time you interacted with them. However, nothing is ever sent to a server, nothing ever leaves your computer, this extension is completely private. Feel free to check the code at the website link.

★ Vertically sorted tabs.

★ White and dark mode

★ Search bar that allows to search for title or url.

★ Sort tabs by url, title and staleness.

★ See the number of open and duplicated tabs.

★ Highlight duplicated tabs.

★ Delete duplicated tabs with one click.

How to use?

★ Open shortcut, CTRL + i (windows), COMMAND + e (macOS) and CTRL + q (linux)
★ Navigate your tabs using the arrow or TAB (on your keyboard)
★ Open a tab via Enter key.
★ Easily close a specific or multiple tabs.
★ Click on the sort icon to sort by either, url, title or staleness.
★ If you have duplicated tabs, click on the menu to highlight them or get rid of them.                    

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

ชื่อ Vertical Tabs Side Panel Vertical Tabs Side Panel
ID nelmjkbalflkmcnnnhjgiodpndcebfgo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vertical-tabs-side-panel/nelmjkbalflkmcnnnhjgiodpndcebfgo
คำอธิบาย ★ Simplicity defines us - NOW WITH TREE VIEW! ★ Open shortcut, CTRL + i (windows), COMMAND + e (macOS) and CTRL + q (linux)…
ขนาดไฟล์ 32.24 KB
จำนวนการติดตั้ง 754
เวอร์ชันปัจจุบัน 0.0.9.0
อัปเดตครั้งล่าสุด 2024-01-04
วันที่เผยแพร่ 2022-12-17
คะแนน 4.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Bruno Braga
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/brunobraga95/vertical-tabs-view
URL หน้าช่วยเหลือ https://github.com/brunobraga95/vertical-tabs-view/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vertical Tabs Side Panel",
    "version": "0.0.9.0",
    "manifest_version": 3,
    "action": {
        "default_title": "Vertical Tabs Side Panel"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "side_panel": {
        "default_path": "sidepanel.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "sidePanel"
    ],
    "icons": {
        "16": "verticaltabsview16.png",
        "48": "verticaltabsview48.png",
        "128": "verticaltabsview128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E",
                "windows": "Ctrl+I",
                "linux": "Ctrl+Q"
            },
            "description": "Opens the extension popup."
        }
    }
}