Text area word-wrap fixer

Text area word-wrap fixer

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

Additional files are visible only to premium users

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