- 论坛徽章:
- 1
|
广告贴就像狗皮膏药,严重干扰思维的连续性。
分享个脚本,屏丫!- // ==UserScript==
- // @name discuz 屏蔽id
- // @namespace
- // @include */viewthread.php*
- // @include */thread*
- // @include */redirect.php*
- // ==/UserScript==
- var bl = new Array("和谐", "shanshanljchch");
- for (x in bl) {
- b = document.evaluate('//table/tbody[tr[1]/td[1]//a[text()="' + bl[x] + '"]]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
- if (b.snapshotLength) {
- for (var i = 0,c=""; i < b.snapshotLength; i++) {
- c = b.snapshotItem(i).firstChild.childNodes[3].textContent.replace(/\s*/g,"").slice(0,2);
- c = (Number(c) > 9)?c+"楼":c
- b.snapshotItem(i).innerHTML = "<center>被屏蔽帖子 " +c+" <font color=red>" + bl[x] + "</font></center>";
- }
- }
- }
复制代码 |
|