screen

try to take over the world!

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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

         }
  });



     };