Vertical Tabs Popup

Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can…

Cos'è Vertical Tabs Popup?

Vertical Tabs Popup è un'estensione di Chrome sviluppata da frankmannen, e la sua funzione principale è "Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Vertical Tabs Popup

Scarica i file di estensione Vertical Tabs Popup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can preferably be place to the side of the main google chrome window.

Similar to Vertical Tabs for Firefox.

The position and size of the popup with tabs should be remembered after you set it the first time. 

Revisions:
2014-05-13 version 0.14
- Fixed bug for html-characters in tab title.
2013-07-26 version 0.12
- Removed time-based auto-refresh on the tabs since chrome updated it's API to support update event when favicon has been loaded
- Added support for multiple windows. The tabs popup will use the currently active window.                    

Informazioni di Base sull'Estensione

Nome Vertical Tabs Popup Vertical Tabs Popup
ID cajhlgkpfinedhdkhecjkkcjgdjnkijf
URL Ufficiale https://chromewebstore.google.com/detail/vertical-tabs-popup/cajhlgkpfinedhdkhecjkkcjgdjnkijf
Descrizione Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can…
Dimensione del File 87.65 KB
Conteggio Installazioni 205
Versione Corrente 0.14
Ultimo Aggiornamento 2014-05-13
Data di Pubblicazione 2014-05-13
Valutazione 1.50/5 Totale 10 Valutazioni
Sviluppatore frankmannen
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vertical Tabs Popup",
    "description": "",
    "version": "0.14",
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "browser_action": {
        "default_popup": "browser_action.html"
    },
    "permissions": [
        "tabs",
        "bookmarks",
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            }
        },
        "next_tab": {
            "suggested_key": {
                "default": "Ctrl+Tab",
                "mac": "MacCtrl+Tab"
            },
            "description": "next_tab"
        },
        "previous_tab": {
            "suggested_key": {
                "default": "Ctrl+Tab",
                "mac": "MacCtrl+Shift+Tab"
            },
            "description": "previous_tab"
        },
        "previous_tab_jump": {
            "description": "previous_tab_jump"
        },
        "next_tab_jump": {
            "description": "next_tab_jump"
        }
    }
}