Text area word-wrap fixer

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

O que é Text area word-wrap fixer?

Text area word-wrap fixer é uma extensão do Chrome desenvolvida por Ateny, e sua principal característica é "Fix the soft word-wrap not working in text area in any website.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Text area word-wrap fixer

Baixe arquivos de extensão Text area word-wrap fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Text area word-wrap fixer Text area word-wrap fixer
ID cmiebacajlhfnfdofcflofoaaikdbpbc
URL Oficial https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc
Descrição Fix the soft word-wrap not working in text area in any website.
Tamanho do Arquivo 4.83 KB
Contagem de Instalações 5,004
Versão Atual 3.0
Última Atualização 2023-12-05
Data de Publicação 2020-04-20
Classificação 3.50/5 Total de 8 Avaliações
Desenvolvedor Ateny
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}