No Column Width
Get rid of `width=blah` values from table columns (it never looks good anyway!).
Was ist No Column Width?
No Column Width ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Get rid of `width=blah` values from table columns (it never looks good anyway!).".
Erweiterungsscreenshots
No Column Width-Erweiterungs-CRX-Datei herunterladen
Laden Sie No Column Width-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
Name No Column Width ID lgfldiggkgaahdbbhhafafkcgmchklaa Offizielle URL https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa Beschreibung Get rid of `width=blah` values from table columns (it never looks good anyway!). Dateigröße 3.24 KB Installationsanzahl 23 Aktuelle Version 0.1 Letztes Update 2012-07-18 Veröffentlichungsdatum 2012-07-18 Bewertung 5.00/5 Insgesamt 1 Bewertungen Entwickler Unknown Zahlungsart free Unterstützte Sprachen 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" ] } ] }