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!).”。
擴展截圖
下載No Column Width擴展crx文件
下載No Column Width擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a very simple extension that removes width attributes froms & 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 ID lgfldiggkgaahdbbhhafafkcgmchklaa 官方網址 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" ] } ] }