发现后
this script
,可以将以下代码放入以
.user.js
安装在Firefox或Chrome中。
// ==UserScript==
// @name Rally Onclick Nuke
// @namespace http://diveintogreasemonkey.org/download/
// @description Nukes the "onclick" attribute from user story links so you can CTRL click a link and have it open in a new tab
// @include https://*rally.sp
// ==/UserScript==
var links = document.getElementsByTagName("a");
for (i = 0; i < links.length; i++) {
var node = links[i];
var link = node.getAttribute("href");
if (link && link.indexOf("slm/detail/ar/") > -1 ) {
if (node.getAttribute("onclick")) {
node.removeAttribute("onclick");
}
}
}