input with full width ;-)
// ==UserScript== // @name studi.fr input with full width // @namespace http://tampermonkey.net/ // @description input with full width ;-) // @author [email protected] // @match https://app.studi.fr/* // @version 0.1 // @grant none // ==/UserScript== var checkExist = setInterval(function() { var $ = window.jQuery; if ($('.exoInput').length) { $('.exoInput').width('100%'); clearInterval(checkExist); } }, 100); // check every 100ms