// ==UserScript== // @name 去你妈的秒懂 // @namespace http://tampermonkey.net/ // @version 0.2.0 // @license gpl-3.0 // @description 去除百度系网站的秒懂百科/视频,目前支持百度百科、百度知道 // @author PRO // @match https://*.baidu.com/* // @icon https://www.baidu.com/favicon.ico // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; let config = { // 添加域名-selector的映射来适配更多网站 "baike.baidu.com": ['.second-wrapper'], "jingyan.baidu.com": ['.feeds-video-box', '.feeds-video-one-view', '.video-wrapper'] } let names = config[document.domain]; if (names) { names.forEach((name) => { let sb = document.querySelector(name); if (sb){ sb.remove(); console.log(`[去你妈的秒懂] ${name} 元素移除成功!`); } else { console.log(`[去你妈的秒懂] 未发现 ${name} 元素!`); } }); } else { console.log('[去你妈的秒懂] 暂不支持此站点,请提交适配反馈!'); }; })();