Transifex with full size form input boxes

Allows you to send messages in Transifex like a normal person, instead of having a tiny-ass box because their front end developer sucks.

  1. // ==UserScript==
  2. // @name Transifex with full size form input boxes
  3. // @namespace userscripts.org/user/swyter
  4. // @author Swyter
  5. // @homepage https://swyterzone.appspot.com
  6. // @description Allows you to send messages in Transifex like a normal person, instead of having a tiny-ass box because their front end developer sucks.
  7. // @match https://www.transifex.com/*
  8. // @version 1.1.1
  9. // @grant GM_addStyle
  10. // @icon https://i.imgur.com/CfwMb7y.png
  11. // ==/UserScript==
  12.  
  13. GM_addStyle(" input, textarea, .tx-form-error \
  14. { \
  15. width: 100% !important; \
  16. resize: both !important; \
  17. }");