脚本
This commit is contained in:
parent
5a5a967c88
commit
13e714a541
1
andriod/学习第一课.md
Normal file
1
andriod/学习第一课.md
Normal file
@ -0,0 +1 @@
|
||||
# 第一课
|
23
脚本/禅道.md
Normal file
23
脚本/禅道.md
Normal 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);
|
||||
|
||||
}
|
||||
)()
|
||||
```
|
Loading…
Reference in New Issue
Block a user