NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Azure DevOps - Improved Job Execution Times // @namespace http://tampermonkey.net/ // @version 0.1 // @description Redesigns Azure DevOps / Pipelines Job Execution Time Markers. // @author mkielar // @license MIT // @match https://dev.azure.com/*/*/_build/results?* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle (` a.job-row > span.text-ellipsis, div.stage-card-primary > div.stage-progress-row > span.text-ellipsis { background-color: #f1f1f1; overflow: unset; border-radius: 16px; padding: 0 8px; } a.job-row > span.text-ellipsis > span.bolt-time-item, div.stage-card-primary > div.stage-progress-row > span.text-ellipsis > span.bolt-time-item { color: #767676 !important; } `) })();