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.

2015/06/02のページです。最新版はこちら。

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name        Transifex with full size form input boxes
// @namespace   userscripts.org/user/swyter
// @author      Swyter
// @homepage    https://swyterzone.appspot.com
// @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.
// @match       https://www.transifex.com/*
// @version     1.1
// @grant       GM_addStyle
// @icon        https://i.imgur.com/CfwMb7y.png
// ==/UserScript==

GM_addStyle(".tx-form-field input, .tx-form-field textarea { \
                height: inherit !important;                  \
                width:  inherit !important;                  \
             }                                               \
                                                             \
            .tx-form-field textarea {                        \
                resize: both !important;                     \
            }");