Greasy Fork is available in English.

微博去除推荐内容

try to take over the world!

22.07.2020 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name         微博去除推荐内容
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *://*.weibo.com/*
// @require      https://cdn.bootcdn.net/ajax/libs/jquery/3.1.1/jquery.min.js
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function(){
        if(!isNaN(parseInt(window.location.pathname.substr(1,10))))
        {
            $(".WB_frame_c").attr("style","margin-left:"+$("#plc_main").width()/6+"px;");
        }
        $(".key").hide();
        $(".Slide_show_3dpDk").parent().hide();
        $(".PCD_feed").parent().parent().hide();
        $("#v6_pl_rightmod_hongbao").hide();
        $("#v6_pl_rightmod_rank").hide();
        $("#v6_pl_rightmod_recominfo").hide();
        $("#v6_pl_rightmod_ads36").hide();
        $("#v6_pl_rightmod_attfeed").hide();
        $("#v6_trustPagelet_recom_member").hide();
        $("#v6_pl_rightmod_noticeboard").hide();
        $("#v6_pl_ad_bigday").hide();
        $("#v6_pl_ad_forfqy").hide();
    })
})();