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"
            ]
        }
    ]
}