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()
    }
})();

 

 

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐