No Column Width

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

No Column Width là gì?

No Column Width là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Get rid of `width=blah` values from table columns (it never looks good anyway!).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng No Column Width

Tải xuống các tệp mở rộng No Column Width dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên No Column Width No Column Width
ID lgfldiggkgaahdbbhhafafkcgmchklaa
URL Chính Thức https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa
Mô tả Get rid of `width=blah` values from table columns (it never looks good anyway!).
Kích Thước Tệp 3.24 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2012-07-18
Ngày Phát Hành 2012-07-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}