Text area word-wrap fixer

Fix the soft word-wrap not working in text area in any website.

ما هو Text area word-wrap fixer؟

Text area word-wrap fixer هو إضافة Chrome تم تطويرها بواسطة Ateny، والميزة الرئيسية لها هي "Fix the soft word-wrap not working in text area in any website.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Text area word-wrap fixer

قم بتنزيل ملفات الامتداد Text area word-wrap fixer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Several websites do not support word-wrap for (HTML) text area elements. There are workarounds which require injecting style sheets (CSS) for each website.

This extension bypasses the problem and directly applies the fix to the text areas in websites.                    

معلومات أساسية عن التمديد

الاسم Text area word-wrap fixer Text area word-wrap fixer
ID cmiebacajlhfnfdofcflofoaaikdbpbc
عنوان URL الرسمي https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc
الوصف Fix the soft word-wrap not working in text area in any website.
حجم الملف 4.83 KB
عدد التثبيتات 5,004
النسخة الحالية 3.0
آخر تحديث 2023-12-05
تاريخ النشر 2020-04-20
تقييم 3.50/5 مجموع تقييمات 8
المطور Ateny
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.0",
    "manifest_version": 3,
    "name": "Text area word-wrap fixer",
    "description": "Fix the soft word-wrap not working in text area in any website.",
    "author": "Simone Frassanito",
    "icons": {
        "128": "favicon.png"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "fix.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}