InfoPath word-wrap fixer

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

Was ist InfoPath word-wrap fixer?

InfoPath word-wrap fixer ist eine Chrome-Erweiterung, die von Ateny entwickelt wurde, und ihr Hauptmerkmal ist "Fix the soft word-wrap not working in InfoPath for SharePoint Sites.".

Erweiterungsscreenshots

screenshot

InfoPath word-wrap fixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie InfoPath word-wrap fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name InfoPath word-wrap fixer InfoPath word-wrap fixer
ID kmmnemafkbgbnbnbdephhieibeeihfdl
Offizielle URL https://chromewebstore.google.com/detail/infopath-word-wrap-fixer/kmmnemafkbgbnbnbdephhieibeeihfdl
Beschreibung Fix the soft word-wrap not working in InfoPath for SharePoint Sites.
Dateigröße 4.83 KB
Installationsanzahl 5,069
Aktuelle Version 3.0
Letztes Update 2023-12-05
Veröffentlichungsdatum 2020-05-03
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Ateny
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}