No Column Width

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

什么是No Column Width?

No Column Width是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Get rid of `width=blah` values from table columns (it never looks good anyway!).”。

扩展截图

screenshot

下载No Column Width扩展crx文件

下载No Column Width扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 No Column Width No Column Width
ID lgfldiggkgaahdbbhhafafkcgmchklaa
官方URL https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa
简介 Get rid of `width=blah` values from table columns (it never looks good anyway!).
文件大小 3.24 KB
安装次数 23
当前版本 0.1
更新时间 2012-07-18
上架时间 2012-07-18
评分 5.00/5 共1次评分
开发者 Unknown
付费类型 free
支持的语言 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"
            ]
        }
    ]
}