您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Refreshes JIRA Rapidboard when it detects the "Board has been updated" notification
// ==UserScript== // @name JIRA Rapidboard Refresher // @namespace https://github.com/rsylthe/ // @version 0.1 // @description Refreshes JIRA Rapidboard when it detects the "Board has been updated" notification // @author You // @match */RapidBoard.jspa* // @include */RapidBoard.jspa* // @grant none // ==/UserScript== (function(doc) { var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { var yourdiv = doc.querySelector("#ghx-update-message"); if(yourdiv){ location.reload(); console.log("Changes detected, refreshing page"); } }); }); observer.observe(doc, { childList: true, subtree: true }); })(document);