try to take over the world!
// ==UserScript==
// @name 移除百度经验的视频
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://jingyan.baidu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let video = document.querySelector('.clearfix.feeds-video-box')
video.parentNode.removeChild(video)
// Your code here...
})();