如何使用greasemonkey有选择地从网站上删除内容

时间:2012-02-06 23:44:22

标签: javascript html greasemonkey webpage tampermonkey

我尝试修改的内容包含一系列<div>个条目,其中每个条目都包含其他<div>条目。此处没有id标记可供帮助。我希望脚本做的是检查每个<div>条目的内容并查找一些文本。这将用于确定是否删除/隐藏整个“条目”。这可能吗?怎么样?

以下是一个例子。页面中有几个,我想删除/隐藏<div class="foo bar">标签内的文字说“是”的文本。所以在这个例子中,整个事情将被删除/隐藏。

<div class="entry">

<div class="fooPhoto"><a href="Addfoo.jsp?tid=954102"><img class="person" src="http://static.barfoo.com/images/site/icons/dude.png" border="0" width="24" height="24" onerror="this.src='images/site/icons/dude.png'" title="Photo Unavailable" alt="Photo Unavailable" ></a></div>

<div class="fooAvg">4.7</div>     

<div class="foo bar">Yes</div>

<div class="fooShare">
<a class="shareEmail" href="referral.jsp?sid=882&tid=954102&pgid=3">Share using email</a>
</div>

</div><!-- closes entry -->

1 个答案:

答案 0 :(得分:12)

对于这样的问题,请发布指向目标网页的链接。或者,如果确实无法做到这一点,请将页面保存到pastebin.com并链接到该页面。

无论如何,jQuery contains() selector对你的问题的一般回答并不太难。这样的事情会起作用:

// ==UserScript==
// @name     _Remove annoying divs
// @include  http://YOUR_SERVER/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
//- The @grant directive is needed to restore the proper sandbox.

/*--- Use the jQuery contains selector to find content to remove.
    Beware that not all whitespace is as it appears.
*/
var badDivs = $("div div:contains('Annoying text, CASE SENSITIVE')");

badDivs.remove ();

//-- Or use badDivs.hide(); to just hide the content.


更新新澄清的问题/代码:

在您的具体示例中,您将使用此:

var badDivs = $("div.entry div.foo:contains('Yes')");

badDivs.parent ().remove ();


评论中指定的网站更新:
请注意,无需搜索文本,因为该网站可以方便地为密钥div提供isHotnotHot类。

// ==UserScript==
// @name     _Unless they're hot, they're not (shown).
// @include  http://www.ratemyprofessors.com/SelectTeacher.jsp*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
//- The @grant directive is needed to restore the proper sandbox.

var badDivs = $("#ratingTable div.entry").has ("div.notHot");

badDivs.remove ();


最后,对于动态(AJAX驱动)页面,

使用MutationObserverwaitForKeyElements。 (WaitForKeyElements在静态页面上也可以正常工作。)

以上是重写为AJAX的上述脚本:

// ==UserScript==
// @name     _Unless they're hot, they're not (shown).
// @include  http://www.ratemyprofessors.com/SelectTeacher.jsp*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle
// ==/UserScript==
//- The @grant directive is needed to restore the proper sandbox.

waitForKeyElements ("#ratingTable div.entry", deleteNotHot);

function deleteNotHot (jNode) {
    if (jNode.has("div.notHot").length) {
        jNode.remove ();
    }
}