No Column Width

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

Cos'è No Column Width?

No Column Width è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Get rid of `width=blah` values from table columns (it never looks good anyway!).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione No Column Width

Scarica i file di estensione No Column Width in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome No Column Width No Column Width
ID lgfldiggkgaahdbbhhafafkcgmchklaa
URL Ufficiale https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa
Descrizione Get rid of `width=blah` values from table columns (it never looks good anyway!).
Dimensione del File 3.24 KB
Conteggio Installazioni 23
Versione Corrente 0.1
Ultimo Aggiornamento 2012-07-18
Data di Pubblicazione 2012-07-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}