InfoPath word-wrap fixer
Fix the soft word-wrap not working in InfoPath for SharePoint Sites.
Cos'è InfoPath word-wrap fixer?
InfoPath word-wrap fixer è un'estensione di Chrome sviluppata da Ateny, e la sua funzione principale è "Fix the soft word-wrap not working in InfoPath for SharePoint Sites.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione InfoPath word-wrap fixer
Scarica i file di estensione InfoPath word-wrap fixer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | InfoPath word-wrap fixer |
ID | kmmnemafkbgbnbnbdephhieibeeihfdl |
URL Ufficiale | https://chromewebstore.google.com/detail/infopath-word-wrap-fixer/kmmnemafkbgbnbnbdephhieibeeihfdl |
Descrizione | Fix the soft word-wrap not working in InfoPath for SharePoint Sites. |
Dimensione del File | 4.83 KB |
Conteggio Installazioni | 5,069 |
Versione Corrente | 3.0 |
Ultimo Aggiornamento | 2023-12-05 |
Data di Pubblicazione | 2020-05-03 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Ateny |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } ] } |