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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

 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/
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}