Text area word-wrap fixer

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

Co to jest Text area word-wrap fixer?

Text area word-wrap fixer to rozszerzenie Chrome opracowane przez Ateny, a jego główną funkcją jest „Fix the soft word-wrap not working in text area in any website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Text area word-wrap fixer

Pobierz pliki rozszerzeń Text area word-wrap fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Text area word-wrap fixer Text area word-wrap fixer
ID cmiebacajlhfnfdofcflofoaaikdbpbc
Oficjalny URL https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc
Opis Fix the soft word-wrap not working in text area in any website.
Rozmiar pliku 4.83 KB
Liczba instalacji 5,004
Aktualna Wersja 3.0
Ostatnia Aktualizacja 2023-12-05
Data Publikacji 2020-04-20
Ocena 3.50/5 Łącznie 8 Oceny
Deweloper Ateny
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}