No Column Width

Get rid of `width=blah` values from table columns (it never looks good anyway!).

O que é No Column Width?

No Column Width é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Get rid of `width=blah` values from table columns (it never looks good anyway!).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão No Column Width

Baixe arquivos de extensão No Column Width 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

                        This is a very simple extension that removes width attributes from s & s. Some websites that I must use at work use this attribute, and it makes working with them very difficult.

It's possible that some websites use width attributes well. So it'd be nice if this extension allowed making a whitelist of allowed sites, but until I need it I don't care to develop it.

If you want to add to it, grab the code at https://github.com/chadoh/no-column-width                    

Informações Básicas da Extensão

Nome No Column Width No Column Width
ID lgfldiggkgaahdbbhhafafkcgmchklaa
URL Oficial https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa
Descrição Get rid of `width=blah` values from table columns (it never looks good anyway!).
Tamanho do Arquivo 3.24 KB
Contagem de Instalações 23
Versão Atual 0.1
Última Atualização 2012-07-18
Data de Publicação 2012-07-18
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Column Width",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Get rid of `width=blah` values from table columns (it never looks good anyway!).",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove-column-widths.js"
            ]
        }
    ]
}