博客园沉浸模式

将宝贵的精力集中于内容本身

  1. // ==UserScript==
  2. // @name 博客园沉浸模式
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 将宝贵的精力集中于内容本身
  6. // @author lnwazg
  7. // @match *.cnblogs.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13.  
  14. function removeAd() {
  15. let len = arguments.length;
  16. for (var i = 0; i < len; i++) {
  17. $(arguments[i]).hide();
  18. }
  19. }
  20. removeAd("#blogTitle","#navigator","#cnblogs_c2", "#comment_form", "#cnblogs_c1", "#sideBarMain", "#blog_post_info_block", "#sideBar");
  21.  
  22. $("#mainContent").width("92%").css("marginLeft","15");
  23. $(".forFlow").css("marginLeft","0");
  24. $("body,#header,#footer,.forFlow").css("background","none");
  25. })();

QingJ © 2025

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