Too Many Tabs

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

O que é Too Many Tabs?

Too Many Tabs é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension will notify you when you have more then n tabs open".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Too Many Tabs

Baixe arquivos de extensão Too Many Tabs no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Too Many Tabs Too Many Tabs
ID nlkndibnjffddomkegpgkeejdahifpop
URL Oficial https://chromewebstore.google.com/detail/too-many-tabs/nlkndibnjffddomkegpgkeejdahifpop
Descrição This extension will notify you when you have more then n tabs open
Tamanho do Arquivo 42.02 KB
Contagem de Instalações 12
Versão Atual 1.0.1
Última Atualização 2018-08-04
Data de Publicação 2018-08-04
Desenvolvedor Unknown
Tipo de Pagamento free
Site da Extensão https://github.com/fabianmoronzirfas/too-many-tabs
URL da Página de Ajuda https://github.com/fabianmoronzirfas/too-many-tabs/issues
Idiomas Suportados 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"
    ]
}