Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Apa itu Text area word-wrap fixer?
Text area word-wrap fixer adalah ekstensi Chrome yang dikembangkan oleh Ateny, dan fitur utamanya adalah "Fix the soft word-wrap not working in text area in any website.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Text area word-wrap fixer
Unduh file ekstensi Text area word-wrap fixer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
URL Resmi | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Deskripsi | Fix the soft word-wrap not working in text area in any website. |
Ukuran File | 4.83 KB |
Jumlah Instalasi | 5,004 |
Versi Saat Ini | 3.0 |
Terakhir Diperbarui | 2023-12-05 |
Tanggal Publikasi | 2020-04-20 |
Penilaian | 3.50/5 Total 8 Penilaian |
Pengembang | Ateny |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } ] } |