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 } ] } |