This is a plugin for pingcode
当前为
// ==UserScript==
// @name pingcodeHelper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description This is a plugin for pingcode
// @author Amos
// @match https://onetoken.pingcode.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(()=>{
let workItems=document.querySelectorAll('.work-item-info')
for(let item of workItems){
let status=item.querySelector('.flexible-text-container').textContent
if(status==='关闭'||status==='已完成'){
item.parentElement.parentElement.style='display:none'
}
}
},1000)
console.log('starting')
// Your code here...
})();