screen

try to take over the world!

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==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()
             }

         }
  });



     };