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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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