Tab Overflow

A tool to prevent you from opening too many tabs.

O que é Tab Overflow?

Tab Overflow é uma extensão do Chrome desenvolvida por lexmart, e sua principal característica é "A tool to prevent you from opening too many tabs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Overflow

Baixe arquivos de extensão Tab Overflow 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

                        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                    

Informações Básicas da Extensão

Nome Tab Overflow Tab Overflow
ID bkjofbabnobnejgceoncjoimceohlogl
URL Oficial https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl
Descrição A tool to prevent you from opening too many tabs.
Tamanho do Arquivo 21.73 KB
Contagem de Instalações 16
Versão Atual 0.1
Última Atualização 2015-10-22
Data de Publicação 2015-10-22
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor lexmart
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}