NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LabelCounter // @version 0.4 // @description Adds info about number of agents // @author Magnus HÃ¥kansson // @match *://*/label/* // @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js // @run-at document-end // @grant none // @updateURL https://openuserjs.org/meta/magnushakansson/LabelCounter.meta.js // @license MIT // ==/UserScript== $(document).ready(function () { jQuery('h1').after("<h2>Number of agents: " + $(".jenkins-link--with-icon").size() + "</h2>"); });