Line Wrapper

Enables line wrapping in

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

Τι είναι το
 Line Wrapper;

Το

 Line Wrapper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://pmarks.net, και η κύρια λειτουργία του είναι "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης
 Line Wrapper

Λήψη αρχείων επέκτασης

 Line Wrapper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

 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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
Επίσημο URL https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Περιγραφή Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Μέγεθος Αρχείου 4.98 KB
Αριθμός Εγκαταστάσεων 68
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2013-02-11
Ημερομηνία Δημοσίευσης 2013-02-10
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://pmarks.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://code.google.com/p/chromium-pre-wrap/
URL της Σελίδας Πολιτικής Απορρήτου https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}