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
官方網址 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
        }
    ]
}