后台打开
This commit is contained in:
parent
a0b0fadd94
commit
15b7e301c1
|
@ -1,10 +1,11 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name tieba page
|
// @name tieba page
|
||||||
// @namespace http://tampermonkey.net/
|
// @namespace http://tampermonkey.net/
|
||||||
// @version 0.61
|
// @version 0.70
|
||||||
// @author fthvgb1
|
// @author fthvgb1
|
||||||
// @match https://tieba.baidu.com/*
|
// @match https://tieba.baidu.com/*
|
||||||
// @grant none
|
// @grant GM.openInTab
|
||||||
|
|
||||||
// @description 显示手机版贴吧里被隐藏的楼层与翻页按钮
|
// @description 显示手机版贴吧里被隐藏的楼层与翻页按钮
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
|
@ -250,12 +251,14 @@
|
||||||
a.classList.remove('tl_shadow_for_app');
|
a.classList.remove('tl_shadow_for_app');
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
//debugger
|
|
||||||
let lis = document.querySelectorAll('li.tl_shadow>a[data-thread-type="0"]');
|
let lis = document.querySelectorAll('li.tl_shadow>a[data-thread-type="0"]');
|
||||||
if (lis.length > 0) {
|
if (lis.length > 0) {
|
||||||
lis.forEach(value => {
|
lis.forEach(value => {
|
||||||
//debugger
|
let url = value.href;
|
||||||
value.setAttribute('target', '_blank')
|
value.href = 'javascript:void(0);';
|
||||||
|
value.onclick = (v) => {
|
||||||
|
GM.openInTab(url, true);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user