No Column Width

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

¿Qué es No Column Width?

No Column Width es una extensión de Chrome desarrollada por Unknown, y su función principal es "Get rid of `width=blah` values from table columns (it never looks good anyway!).".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión No Column Width

Descarga archivos de extensión No Column Width en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre No Column Width No Column Width
ID lgfldiggkgaahdbbhhafafkcgmchklaa
URL Oficial https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa
Descripción Get rid of `width=blah` values from table columns (it never looks good anyway!).
Tamaño del Archivo 3.24 KB
Cantidad de Instalaciones 23
Versión Actual 0.1
Última Actualización 2012-07-18
Fecha de Publicación 2012-07-18
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}