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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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