No Column Width
Get rid of `width=blah` values from table columns (it never looks good anyway!).
Qu'est-ce que No Column Width ?
No Column Width est une extension Chrome développée par Unknown, et sa fonction principale est "Get rid of `width=blah` values from table columns (it never looks good anyway!).".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension No Column Width
Téléchargez les fichiers d'extension No Column Width au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 Informations de Base sur l'Extension
Nom No Column Width ID lgfldiggkgaahdbbhhafafkcgmchklaa URL Officiel https://chromewebstore.google.com/detail/no-column-width/lgfldiggkgaahdbbhhafafkcgmchklaa Description Get rid of `width=blah` values from table columns (it never looks good anyway!). Taille du Fichier 3.24 KB Nombre d'Installations 23 Version Actuelle 0.1 Dernière Mise à Jour 2012-07-18 Date de Publication 2012-07-18 Évaluation 5.00/5 Total 1 Évaluations Développeur Unknown Type de Paiement free Langues Prises en Charge 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" ] } ] }