2016-04-25 106 views
0

我正在使用自定義網格在儀表板小部件上顯示我的故事。我也想看看我的故事。除非我手動點擊小三角形圖像和展開行以顯示故事下的任務,否則無法完成此操作。有沒有辦法通過設置或腳本像tampermonkey自動執行此操作?展開拉力賽自定義網格行以自動顯示任務

+0

回答這個問題的人是否在意解釋? – PAS

回答

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(); 
})(); 
+0

誰在投票?請解釋,只是downvote沒有幫助。 – PAS

相關問題