Too Many Tabs

This extension will notify you when you have more then n tabs open

Cos'è Too Many Tabs?

Too Many Tabs è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension will notify you when you have more then n tabs open".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Too Many Tabs

Scarica i file di estensione Too Many Tabs 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

                        Do you tend to open tab after tab after tab end end up with hundreds of them? Not any more. This little nagging extension will remind you when you have more then your desired number (defaults to 9) of tabs open. Get some self control and reduce your  CPU load.                    

Informazioni di Base sull'Estensione

Nome Too Many Tabs Too Many Tabs
ID nlkndibnjffddomkegpgkeejdahifpop
URL Ufficiale https://chromewebstore.google.com/detail/too-many-tabs/nlkndibnjffddomkegpgkeejdahifpop
Descrizione This extension will notify you when you have more then n tabs open
Dimensione del File 42.02 KB
Conteggio Installazioni 12
Versione Corrente 1.0.1
Ultimo Aggiornamento 2018-08-04
Data di Pubblicazione 2018-08-04
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/fabianmoronzirfas/too-many-tabs
URL della Pagina di Aiuto https://github.com/fabianmoronzirfas/too-many-tabs/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Too Many Tabs",
    "short_name": "2ManyTabs",
    "description": "This extension will notify you when you have more then n tabs open",
    "version": "1.0.1",
    "author": "Fabian Mor\u00f3n Zirfas",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "notifications"
    ]
}