Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Что такое Text area word-wrap fixer?
Text area word-wrap fixer - это расширение Chrome, разработанное Ateny, и его основная функция - "Fix the soft word-wrap not working in text area in any website.".
Снимки экрана расширения
Скачать файл CRX расширения Text area word-wrap fixer
Скачайте файлы расширений Text area word-wrap fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
Официальный URL | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Описание | Fix the soft word-wrap not working in text area in any website. |
Размер файла | 4.83 KB |
Количество установок | 5,004 |
Текущая Версия | 3.0 |
Последнее Обновление | 2023-12-05 |
Дата публикации | 2020-04-20 |
Рейтинг | 3.50/5 Всего 8 оценок |
Разработчик | Ateny |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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 } ] } |