InfoPath word-wrap fixer

Fix the soft word-wrap not working in InfoPath for SharePoint Sites.

O que é InfoPath word-wrap fixer?

InfoPath word-wrap fixer é uma extensão do Chrome desenvolvida por Ateny, e sua principal característica é "Fix the soft word-wrap not working in InfoPath for SharePoint Sites.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão InfoPath word-wrap fixer

Baixe arquivos de extensão InfoPath 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 SharePoint Sites using InfoPath forms do not support word-wrap for (HTML) text area elements. There are workarounds which require modifying style sheets (CSS) for each SharePoint Site. These workarounds need to be applied on a site-by-site basis, and they are not supported by some newer SharePoint Sites.

This extension bypasses the problem and directly applies the fix to the text areas in all SharePoint Sites that are sub-domains of sharepoint.com.

Available also for Firefox at https://addons.mozilla.org/en-GB/firefox/addon/infopath-word-wrap-fixer/.

If you need to fix area text elements in any websites, see https://chrome.google.com/webstore/detail/cmiebacajlhfnfdofcflofoaaikdbpbc.                    

Informações Básicas da Extensão

Nome InfoPath word-wrap fixer InfoPath word-wrap fixer
ID kmmnemafkbgbnbnbdephhieibeeihfdl
URL Oficial https://chromewebstore.google.com/detail/infopath-word-wrap-fixer/kmmnemafkbgbnbnbdephhieibeeihfdl
Descrição Fix the soft word-wrap not working in InfoPath for SharePoint Sites.
Tamanho do Arquivo 4.83 KB
Contagem de Instalações 5,069
Versão Atual 3.0
Última Atualização 2023-12-05
Data de Publicação 2020-05-03
Classificação 5.00/5 Total de 4 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": "InfoPath word-wrap fixer",
    "description": "Fix the soft word-wrap not working in InfoPath for SharePoint Sites.",
    "author": "Simone Frassanito",
    "icons": {
        "128": "favicon.png"
    },
    "host_permissions": [
        "*:\/\/*.sharepoint.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.sharepoint.com\/*"
            ],
            "css": [
                "fix.css"
            ],
            "all_frames": true
        }
    ]
}