Vertical Tabs

A chrome extension that presents your tabs vertically. News: - Tab preview support is here! - Dark theme support is here!…

什么是Vertical Tabs?

Vertical Tabs是由Michael开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that presents your tabs vertically. News: - Tab preview support is here! - Dark theme support is here!…”。

扩展截图

screenshot
screenshot
screenshot

下载Vertical Tabs扩展crx文件

下载Vertical Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A chrome extension that presents your tabs vertically.

News:
- Tab preview support is here!
- Dark theme support is here!

Features include:
- Dark theme.
- Display tabs vertically in a sidebar on web pages.
- Tabs are displayed with the same style as Google Chrome.
- Drag and drop to reorder tabs.
- Mute tabs.
- Search and filter tabs in the sidebar.
- Toggle the sidebar by clicking on the extension icon.
- Toggle the sidebar using the keyboard shortcut: Cmd + E (Ctrl + E on PC)(Using keyboard shortcuts are recommended once you formed the corresponding muscle memory)
- The sidebar is resizable.
- Auto show/hide sidebar.
- The sidebar can be placed on either the left or the right side of the window. New!

More features to come! Such as tree styled tabs! Stay tuned!

Some known problems:
- Vertical Tabs only works on regular html pages (which is 99% of the time). However, it doesn't work on your Newtab page, chrome web store pages, or PDF pages. Unfortunately that's the way it works in chrome, and there's no known way to get around it currently.
- It works by injecting an iframe into a webpage. Therefore, zooming in/out on the page will cause the vertical tabs to become large/small. There's no way to get around this.
- Please refresh the page after a version update. For example, when you find that the toggling functionality gave up working, it's most probably I updated the version, and refreshing the web pages (using Cmd + R / Ctrl + R) should fix it.

Thank you!


Built with React, Webpack, and love by @lxieyang.                    

扩展基本信息

名称 Vertical Tabs Vertical Tabs
ID pddljdmihkpdfpkgmbhdomeeifpklgnm
官方URL https://chromewebstore.google.com/detail/vertical-tabs/pddljdmihkpdfpkgmbhdomeeifpklgnm
简介 A chrome extension that presents your tabs vertically. News: - Tab preview support is here! - Dark theme support is here!…
文件大小 376 KB
安装次数 36,940
当前版本 2.0.4
更新时间 2024-01-13
上架时间 2020-04-05
评分 2.99/5 共154次评分
开发者 Michael
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/lxieyang/vertical-tabs-chrome-extension
帮助页面URL https://github.com/lxieyang/vertical-tabs-chrome-extension
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.4",
    "name": "Vertical Tabs",
    "background": {
        "page": "background.html"
    },
    "browser_action": [],
    "permissions": [
        "chrome:\/\/favicon\/",
        "tabs",
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "sidebar.html",
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "icon-128-eye.png",
        "icon-34-eye.png",
        "iframe-background.gif"
    ],
    "manifest_version": 2,
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            }
        }
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr72k\/NjWLsQ2Fp7RRSAXCWDLQbeto8D+7qQMOkVXdlTEk9DslAte7UaNNQ+5CTjtmWxhSLN9r\/yzLwlKamEqy5LTiGg8rI\/lPc033jjdv6E9I00sFd\/NMqFmH3BAYyZ3rLlrRC5j+w1PvLtGjZ+fBBX+6XvN5knnmlQfFEmf8EwM9Qrao0H5ydddBfLUaiSKZIEP3s6OykTAwsedHAnMTO922Z\/aEJnoqKC8MG2D27AlNOvJdbVeuzy\/5RB8HwcReEwkYhXf7jITcOjsxlEUQTYeQ6WXcu9g6KpvaqrdPtlo+ePocLjH43QvPpDSqwWGf\/+7F+S6FJhSrJYRXIVDdwIDAQAB",
    "content_security_policy": "img-src chrome:\/\/favicon; script-src 'self' 'unsafe-eval'; object-src 'self'"
}