Vertabs

Vertical tabs.

什麼是Vertabs?

Vertabs是由Anton Niklasson開發的Chrome擴展程式,該擴展的主要功能是“Vertical tabs.”。

擴展截圖

screenshot
screenshot
screenshot

下載Vertabs擴展crx文件

下載Vertabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Vertabs Vertabs
ID ohogedbookenkamipehdjkeilonagpcp
官方網址 https://chromewebstore.google.com/detail/vertabs/ohogedbookenkamipehdjkeilonagpcp
簡介 Vertical tabs.
檔案大小 428 KB
安裝次數 378
目前版本 1.3.1
更新時間 2013-03-17
上架時間 2013-03-17
評分 3.03/5 共 37 次評分
開發者 Anton Niklasson
付費類型 free
說明頁面URL http://www.twitter.com/AntonNiklasson
支援的語言 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
}