Skip to content

Instantly share code, notes, and snippets.

@raghur
Created March 24, 2016 11:10
Show Gist options
  • Save raghur/7c1f516c2ca954296195 to your computer and use it in GitHub Desktop.
Save raghur/7c1f516c2ca954296195 to your computer and use it in GitHub Desktop.
Greasemonkey script to make Bamboo webUI bearable.
// ==UserScript==
// @name BambooMamboo
// @namespace http://blog.rraghur.in
// @description make Bamboo web ui bearable
// @include https://acsbamboo.honeywell.com/*
// @version 1.0
// ==/UserScript==
this.$ = this.jQuery = jQuery.noConflict(true);
var nodes = $("td.dashboard-operations")
// add link to go to steps directly from main dashboard.
nodes.append(function(index, html) {
key = $(this).children("a[data-plan-key]").data('planKey');
return "<a href='/build/admin/edit/editBuildTasks.action?buildKey="+ key + "-JOB1' target='_blank'>Steps</a>";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment