我使用自定义网格在仪表板小部件上显示我的故事。我也希望在故事中看到我的任务。除非我手动点击小三角形图像和展开行以显示故事下的任务,否则无法做到这一点。有没有办法通过设置或脚本像tampermonkey自动执行此操作?
答案 0 :(得分:0)
我能够使用tampermonkey实现这一目标!
// ==UserScript==
// @name Expand Rally Tasks
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Main Shayar Badnam
// @match https://rally1.rallydev.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(
function () {
$('.x4-tree-elbow-img.x4-tree-elbow-plus.x4-tree-expander').click();$('.x4-tree-elbow-img.x4-tree-elbow-end-plus.x4-tree-expander').click();
}
,2000
);
$().ready();
})();