Greasy Fork

Greasy Fork is available in English.

屏蔽b站(bilibili)播放页面中右侧相关视频推荐与直播广告

屏蔽b站播放页面中右侧推荐

当前为 2022-02-06 提交的版本,查看 最新版本

// ==UserScript==
// @name         屏蔽b站(bilibili)播放页面中右侧相关视频推荐与直播广告
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  屏蔽b站播放页面中右侧推荐
// @author       simplelife
// @match        *://www.bilibili.com/*
// @grant        none
// @require      https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    $('.recommend-list-v1').hide();

    setTimeout(function(){
        $('.lazy-img').hide();
    }, 1000);
    setTimeout(function(){
        $('.lazy-img').hide();
        $('.pl__info').hide();
        $('.pl__head').hide();
        $('.ad-report').hide();
        $('.ad-floor-exp').hide();
    }, 3000);
    setTimeout(function(){
        $('.lazy-img').hide();
        $('.pl__info').hide();
        $('.pl__head').hide();
        $('.ad-report').hide();
        $('.ad-floor-exp').hide();
    }, 5000);

})();