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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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