标签:广告 rem new desc news 首页 func script ott
最近打开百度首页,突然发现有了广告卡片推荐,如下情况所示:
// ==UserScript==
// @name 隐藏百度首页的卡片
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.baidu.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("s-bottom-layer-hide-card-btn").remove();
var news_content = document.getElementById("s_mancard_main");
if (news_content){
news_content.remove();
}
var qr_code = document.getElementById("qrcodeCon");
if (qr_code){
qr_code.remove();
}
})();
标签:广告 rem new desc news 首页 func script ott
原文地址:https://www.cnblogs.com/shiwanghualuo/p/12219648.html