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
电子邮箱 [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
        }
    ]
}