try to take over the world!
当前为
// ==UserScript==
// @name Jenkins - Bigger select boxes
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://jenkins.niji.fr/**
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log('bigger select box for jenkins : init');
var selects = document.querySelectorAll('select.select');
selects.forEach(function(select) {
select.style.height = '400px';
});
})();