Tab Overflow

A tool to prevent you from opening too many tabs.

Cos'è Tab Overflow?

Tab Overflow è un'estensione di Chrome sviluppata da lexmart, e la sua funzione principale è "A tool to prevent you from opening too many tabs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tab Overflow

Scarica i file di estensione Tab Overflow 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

                        Tab Overflow is a tool to prevent you from opening too many tabs in one window. It will forcibly close any tab you try to open beyond the allowed number (which you can specify). This is useful because it prevents you from overflowing your windows with too useless tabs, and trains you to use tabs as a limited resource.

Github Page: https://github.com/lexmart/taboverflow

Developed by Alexander Martin (www.github.com/lexmart)
Graphics designed by Tigran Kasparian                    

Informazioni di Base sull'Estensione

Nome Tab Overflow Tab Overflow
ID bkjofbabnobnejgceoncjoimceohlogl
URL Ufficiale https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl
Descrizione A tool to prevent you from opening too many tabs.
Dimensione del File 21.73 KB
Conteggio Installazioni 16
Versione Corrente 0.1
Ultimo Aggiornamento 2015-10-22
Data di Pubblicazione 2015-10-22
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore lexmart
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Overflow",
    "description": "A tool to prevent you from opening too many tabs.",
    "version": "0.1",
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "tab-overflow.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "browser_action": {
        "default_title": "Tab Overflow",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}