PowerTab

Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.

O que é PowerTab?

PowerTab é uma extensão do Chrome desenvolvida por Insane, e sua principal característica é "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PowerTab

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

                        Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.                    

Informações Básicas da Extensão

Nome PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
URL Oficial https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Descrição Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Tamanho do Arquivo 20.13 KB
Contagem de Instalações 34
Versão Atual 1.0
Última Atualização 2013-09-16
Data de Publicação 2013-09-16
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Insane
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowerTab",
    "description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.",
    "version": "1.0",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "clipboardWrite",
        "tabs"
    ],
    "icons": {
        "16": "icon16x16.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "browser_action": {
        "default_icon": "icon16x16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}