No Column Width

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

What is No Column Width?

No Column Width is a Chrome extension developed by Unknown, and its main feature is "Get rid of `width=blah` values from table columns (it never looks good anyway!).".

Extension Screenshots

screenshot

Download No Column Width Extension CRX File

Download No Column Width extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name No Column Width No Column Width
ID lgfldiggkgaahdbbhhafafkcgmchklaa
Official URL https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa
Description Get rid of `width=blah` values from table columns (it never looks good anyway!).
File Size 3.24 KB
Installation Count 23
Current Version 0.1
Last Updated 2012-07-18
Publish Date 2012-07-18
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}