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はAtenyによって開発されたChromeの拡張機能で、その主な機能は「Fix the soft word-wrap not working in text area in any website.」です。

拡張機能のスクリーンショット

screenshot

Text area word-wrap fixer拡張機能のCRXファイルをダウンロード

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
Eメール [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
        }
    ]
}