利用油猴脚本8行代码去掉csdn的侧边栏广告
·
csdn查看文章功能旁边的小按钮能隐藏两侧的广告

点击后的效果

编写脚本在进入文章页面后自动点击这个按钮
// ==UserScript==
// @name 自动点击隐藏侧边栏
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 侧栏位都去掉了
// @author k54kdk
// @match https://blog.csdn.net/*
// @match https://www.cnblogs.com/*/p/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function rm_el(){
var sho=null
sho=document.getElementsByClassName("show-txt")
sho.click()
}
})();

更多推荐
所有评论(0)