test removAd to CSDN

csdn 去广告!

当前为 2021-06-17 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name test removAd to CSDN
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description csdn 去广告!
  6. // @author xPang
  7. // @match https://blog.csdn.net/*/article/details/*
  8. // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js
  9. // @grant unsafeWindow
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var $ = unsafeWindow.$
  15. function removeAsideBox(){
  16. $('aside').remove()
  17. $('.recommend-right').remove()
  18. $('.fourth_column').remove()
  19. $('.pulllog-box').remove()
  20. $('.indexSuperise').remove()
  21. $('#btn-readmore').click();
  22. $('main').css('width','auto')
  23. }
  24. removeAsideBox()
  25. // Your code here...
  26. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址