Vertabs

Vertical tabs.

Vertabs là gì?

Vertabs là một tiện ích mở rộng Chrome được phát triển bởi Anton Niklasson, và tính năng chính của nó là "Vertical tabs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vertabs

Tải xuống các tệp mở rộng Vertabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Vertabs is a Chrome Extension made for tab junkies. Vertabs gives you a scrollable vertical list of all your open tabs. Use Chrome in fullscreen, and view your tabs and their titles in Vertabs!

Please report any bugs or issues here: github.com/AntonNiklasson/Vertabs/issues

Contact me at: http://www.twitter.com/AntonNiklasson                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vertabs Vertabs
ID ohogedbookenkamipehdjkeilonagpcp
URL Chính Thức https://chromewebstore.google.com/detail/vertabs/ohogedbookenkamipehdjkeilonagpcp
Mô tả Vertical tabs.
Kích Thước Tệp 428 KB
Số Lần Cài Đặt 378
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2013-03-17
Ngày Phát Hành 2013-03-17
Đánh Giá 3.03/5 Tổng số 37 Đánh Giá
Nhà Phát Triển Anton Niklasson
Loại Thanh Toán free
URL Trang Trợ Giúp http://www.twitter.com/AntonNiklasson
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vertabs",
    "version": "1.3.1",
    "description": "Vertical tabs.",
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "imgs\/icon_inactive.png",
        "default_title": "Toggle Vertabs"
    },
    "web_accessible_resources": [
        "imgs\/close.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "vertabs-injector.js"
            ],
            "css": [
                "vertabs.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "",
        "storage",
        "chrome:\/\/favicon\/"
    ],
    "manifest_version": 2
}