Vertabs

Vertical tabs.

Co to jest Vertabs?

Vertabs to rozszerzenie Chrome opracowane przez Anton Niklasson, a jego główną funkcją jest „Vertical tabs.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Vertabs

Pobierz pliki rozszerzeń Vertabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Vertabs Vertabs
ID ohogedbookenkamipehdjkeilonagpcp
Oficjalny URL https://chromewebstore.google.com/detail/vertabs/ohogedbookenkamipehdjkeilonagpcp
Opis Vertical tabs.
Rozmiar pliku 428 KB
Liczba instalacji 378
Aktualna Wersja 1.3.1
Ostatnia Aktualizacja 2013-03-17
Data Publikacji 2013-03-17
Ocena 3.03/5 Łącznie 37 Oceny
Deweloper Anton Niklasson
Typ Płatności free
Adres URL Strony Pomocy http://www.twitter.com/AntonNiklasson
Obsługiwane Języki 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
}