Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Co je Text area word-wrap fixer?
Text area word-wrap fixer je rozšíření Chrome vyvinuté Ateny, a jeho hlavní funkcí je „Fix the soft word-wrap not working in text area in any website.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Text area word-wrap fixer
Stáhněte si soubory rozšíření Text area word-wrap fixer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
Oficiální URL | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Popis | Fix the soft word-wrap not working in text area in any website. |
Velikost souboru | 4.83 KB |
Počet instalací | 5,004 |
Aktuální Verze | 3.0 |
Poslední Aktualizace | 2023-12-05 |
Datum Vydání | 2020-04-20 |
Hodnocení | 3.50/5 Celkem 8 Hodnocení |
Vývojář | Ateny |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } ] } |