Line Wrapper

Enables line wrapping in

 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.

Qu'est-ce que
 Line Wrapper ?

 Line Wrapper est une extension Chrome développée par https://pmarks.net, et sa fonction principale est "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension
 Line Wrapper

Téléchargez les fichiers d'extension

 Line Wrapper 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

 I wrote this extension after getting annoyed by a mailing list that displayed entire paragraphs on a single unreadable line. It injects a bit of CSS to enable line wrapping in 
 tags:

pre { white-space: pre-wrap; }

This takes effect immediately on all active pages.

I've published the (very short) source code under the Apache 2.0 license.                    

Informations de Base sur l'Extension

Nom <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
URL Officiel https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Description Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Taille du Fichier 4.98 KB
Nombre d'Installations 68
Version Actuelle 1.0
Dernière Mise à Jour 2013-02-11
Date de Publication 2013-02-10
Évaluation 4.00/5 Total 4 Évaluations
Développeur https://pmarks.net
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://code.google.com/p/chromium-pre-wrap/
URL de la Page de Politique de Confidentialité https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Langues Prises en Charge en-US
manifest.json
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "
 Line Wrapper", "manifest_version": 2, "version": "1.0", "description": "Enables line wrapping in 
 tags.  Uncheck \"Enabled\" whenever you want to revert to the default behavior.",
    "homepage_url": "http:\/\/chromium-pre-wrap.googlecode.com\/",
    "icons": {
        "128": "boring-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ]
}