No Column Width

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

Что такое No Column Width?

No Column Width - это расширение Chrome, разработанное Unknown, и его основная функция - "Get rid of `width=blah` values from table columns (it never looks good anyway!).".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения No Column Width

Скачайте файлы расширений 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"
            ]
        }
    ]
}