No Column Width

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

Co je No Column Width?

No Column Width je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Get rid of `width=blah` values from table columns (it never looks good anyway!).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření No Column Width

Stáhněte si soubory rozšíření No Column Width ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název No Column Width No Column Width
ID lgfldiggkgaahdbbhhafafkcgmchklaa
Oficiální URL https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa
Popis Get rid of `width=blah` values from table columns (it never looks good anyway!).
Velikost souboru 3.24 KB
Počet instalací 23
Aktuální Verze 0.1
Poslední Aktualizace 2012-07-18
Datum Vydání 2012-07-18
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}