InfoPath word-wrap fixer
Fix the soft word-wrap not working in InfoPath for SharePoint Sites.
¿Qué es InfoPath word-wrap fixer?
InfoPath word-wrap fixer es una extensión de Chrome desarrollada por Ateny, y su función principal es "Fix the soft word-wrap not working in InfoPath for SharePoint Sites.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión InfoPath word-wrap fixer
Descarga archivos de extensión InfoPath word-wrap fixer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | InfoPath word-wrap fixer |
ID | kmmnemafkbgbnbnbdephhieibeeihfdl |
URL Oficial | https://chromewebstore.google.com/detail/infopath-word-wrap-fixer/kmmnemafkbgbnbnbdephhieibeeihfdl |
Descripción | Fix the soft word-wrap not working in InfoPath for SharePoint Sites. |
Tamaño del Archivo | 4.83 KB |
Cantidad de Instalaciones | 5,069 |
Versión Actual | 3.0 |
Última Actualización | 2023-12-05 |
Fecha de Publicación | 2020-05-03 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | Ateny |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } ] } |