返回列表 发帖
迅雷主页更新了,请使用此规则
  1. <rule>
  2.         <name>迅雷看看</name>
  3.         <domains>
  4.                 <domain>
  5.                         <include>
  6.                                 <![CDATA[*kankan.xunlei.com*]]>
  7.                         </include>
  8.                 </domain>
  9.         </domains>
  10.         <pattern type="1">
  11.                 <targets>
  12.                         <param>
  13.                                 <![CDATA[div]]>
  14.                         </param>
  15.                 </targets>
  16.                 <pattern type="3">
  17.                         <targets>
  18.                                 <param>
  19.                                         <![CDATA[class="play_ad"]]>
  20.                                 </param>
  21.                                 <replace>
  22.                                         <![CDATA[<!--AD Blocked -->]]>
  23.                                 </replace>
  24.                         </targets>
  25.                 </pattern>
  26.         </pattern>
  27.         <pattern type="1">
  28.                 <targets>
  29.                         <param>
  30.                                 <![CDATA[div]]>
  31.                         </param>
  32.                 </targets>
  33.                 <pattern type="3">
  34.                         <targets>
  35.                                 <param>
  36.                                         <![CDATA[class="playad"]]>
  37.                                 </param>
  38.                                 <replace>
  39.                                         <![CDATA[<!--AD Blocked -->]]>
  40.                                 </replace>
  41.                         </targets>
  42.                 </pattern>
  43.         </pattern>
  44.         <pattern type="5">
  45.                 <targets>
  46.                         <param>
  47.                                 <![CDATA[<div[^<^>]*?id="_player"[\s\S]*?>]]>
  48.                         </param>
  49.                         <replace>
  50.                                 <![CDATA[<div class="playerbox" id="_player" style="left:55px">]]>
  51.                         </replace>
  52.                 </targets>
  53.         </pattern>
  54. </rule>
复制代码

TOP

本帖最后由 bartchen 于 2010-9-4 10:43 编辑

狗日的迅雷又更新了,上面的用了两天就失效了.
现在更新恶心,居然用广告播放脚本来启动迅雷播放,所以不能直接把广告代码div层过滤掉,做个空的才行.
  1. <rule>
  2.         <name>迅雷看看</name>
  3.         <domains>
  4.                 <domain>
  5.                         <include>
  6.                                 <![CDATA[*kankan.xunlei.com*]]>
  7.                         </include>
  8.                 </domain>
  9.         </domains>
  10.         <pattern type="1">
  11.                 <targets>
  12.                         <param>
  13.                                 <![CDATA[div]]>
  14.                         </param>
  15.                 </targets>
  16.                 <pattern type="3">
  17.                         <targets>
  18.                                 <param>
  19.                                         <![CDATA[id="normal_lamu"]]>
  20.                                 </param>
  21.                                 <replace>
  22.                                         <![CDATA[<div class="playad" id="normal_lamu" style="display:none;"></div>]]>
  23.                                 </replace>
  24.                         </targets>
  25.                 </pattern>
  26.         </pattern>
  27.         <pattern type="5">
  28.                 <targets>
  29.                         <param>
  30.                                 <![CDATA[<div[^<^>]*?id="_player"[\s\S]*?>]]>
  31.                         </param>
  32.                         <replace>
  33.                                 <![CDATA[<div class="playerbox" id="_player" style="left:55px">]]>
  34.                         </replace>
  35.                 </targets>
  36.         </pattern>
  37. </rule>
复制代码

TOP

返回列表