This commit is contained in:
luyuan 2020-08-17 15:02:33 +08:00
parent 5a5a967c88
commit 13e714a541
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1 @@
# 第一课

23
脚本/禅道.md Normal file
View File

@ -0,0 +1,23 @@
```
// ==UserScript==
// @name 禅道
// @namespace Violentmonkey Scripts
// @match *://zt.xiangtian.ren/*
// @match *://ztnew.sdbairui.com/*
// @grant none
// @version 1.0
// @author -
// @description 2020/6/28 下午3:56:54
// ==/UserScript==
(function (){
var fun = function (){
window.$("#bugList .text-left.nobr a").each((indedx,ele)=>{
// alert($(ele).text())
$(ele).attr("target","_blank")
})
}
setInterval(fun,500);
}
)()
```