screen

try to take over the world!

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         screen
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.douban.com/*
// @require   http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// @grant        none
// @run-at       document-start


// ==/UserScript==
 var keyWordsList = [
             "沈阳",
         ];
var IDList = [
             "少女青龙小琪琪",
              "__冷雨''",
         ];
var resharedIDList = [
            "灯证",
];
   window.onload = function(){
       //$(".status-reshared-wrapper").empty()
       //$(".reshared_by + *").empty()
       //$(".reshared_by").empty()


       $("p").each(function(){
            for(var i=0;i<keyWordsList.length;i++){
             if($(this).text().indexOf(keyWordsList[i])>=0){

             //$(this).text(" ")
                 var o=$(this).parents('.status-wrapper')
                 o.empty()
             }

         }
  });
        $("a.lnk-people").each(function(){
            for(var i=0;i<IDList.length;i++){
             if($(this).text().indexOf(IDList[i])>=0){

             //$(this).text(" ")
                 var o=$(this).parents('.status-wrapper')
                 o.empty()
             }

         }
  });
        $("span.reshared_by > a").each(function(){
            for(var i=0;i<resharedIDList.length;i++){
             if($(this).text().indexOf(resharedIDList[i])>=0){

             //$(this).text(" ")
                 var o=$(this).parents('.status-wrapper')
                 o.empty()
             }

         }
  });



     };