Vertabs

Vertical tabs.

What is Vertabs?

Vertabs is a Chrome extension developed by Anton Niklasson, and its main feature is "Vertical tabs.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Vertabs Extension CRX File

Download Vertabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Vertabs Vertabs
ID ohogedbookenkamipehdjkeilonagpcp
Official URL https://chromewebstore.google.com/detail/vertabs/ohogedbookenkamipehdjkeilonagpcp
Description Vertical tabs.
File Size 428 KB
Installation Count 378
Current Version 1.3.1
Last Updated 2013-03-17
Publish Date 2013-03-17
Rating 3.03/5 Total 37 Ratings
Developer Anton Niklasson
Payment Type free
Help Page URL http://www.twitter.com/AntonNiklasson
Supported Languages 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
}