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.

当前为 2014-09-24 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Transifex with full size form input boxes
  3. // @namespace userscripts.org/user/swyter
  4. // @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.
  5. // @match https://www.transifex.com/*
  6. // @version 1
  7. // @grant GM_addStyle
  8. // ==/UserScript==
  9.  
  10. GM_addStyle(".tx-form-field input, .tx-form-field textarea { \
  11. height: inherit !important; \
  12. width: inherit !important; \
  13. } \
  14. \
  15. .tx-form-field textarea { \
  16. resize: both !important; \
  17. }");