移除B站视频播放页面广告

移除B站视频页面广告 & 自动展开推荐视频列表

// ==UserScript==
// @name         移除B站视频播放页面广告
// @namespace    http://tampermonkey.net/
// @version      114514.1919
// @description  移除B站视频页面广告 & 自动展开推荐视频列表
// @author       SENPAI
// @match        *://*.bilibili.com/video/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    var delay = 5000; //根据网速自行调整脚本执行延时
   
    setTimeout(function(){
        $('#bannerAd').remove();
        $('#slide_ad').remove();
        $('.rec-footer').get(0).click();
    },delay);
})();