Text area word-wrap fixer

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

Text area word-wrap fixer là gì?

Text area word-wrap fixer là một tiện ích mở rộng Chrome được phát triển bởi Ateny, và tính năng chính của nó là "Fix the soft word-wrap not working in text area in any website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Text area word-wrap fixer

Tải xuống các tệp mở rộng Text area word-wrap fixer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Text area word-wrap fixer Text area word-wrap fixer
ID cmiebacajlhfnfdofcflofoaaikdbpbc
URL Chính Thức https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc
Mô tả Fix the soft word-wrap not working in text area in any website.
Kích Thước Tệp 4.83 KB
Số Lần Cài Đặt 5,004
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2023-12-05
Ngày Phát Hành 2020-04-20
Đánh Giá 3.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Ateny
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}