Fixed
- Resolved text input truncation at ~500 characters caused by humanize typing delay + 30s handler timeout
smartFill()now uses bulk DOM insertion viapage.evaluate()for text >= 400 characters- Dynamic typing timeout replaces fixed 30s limit: 10,000ms base + 80ms per character (max 120,000ms)
Changed
- Short text (<400 chars) continues to use humanized per-character typing for anti-detection
- ContentEditable elements use
document.execCommand('insertText')for rich text compatibility