NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Jenkins show only status table // @version 1.0 // @description Only show the status table in a jenkins page // @match jenkins_url // @copyright Aviem Zur // ==/UserScript== var t = document.getElementById('projectstatus') while (document.body.firstChild) document.body.removeChild(document.body.firstChild) document.body.appendChild(t)