Line Wrapper

Enables line wrapping in

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

 Line Wrapper क्या है?

 Line Wrapper https://pmarks.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में

 Line Wrapper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

 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"
            ]
        }
    ]
}