掘金界面宽屏布局

修改掘金文章页面布局,更加美观,显示更多的内容。

  1. // ==UserScript==
  2. // @name 掘金界面宽屏布局
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.11
  5. // @description 修改掘金文章页面布局,更加美观,显示更多的内容。
  6. // @author misterchou@qq.com
  7. // @match *://juejin.im/*
  8. // @grant none
  9. // @icon https://b-gold-cdn.xitu.io/favicons/v2/favicon-32x32.png
  10. // @require https://libs.baidu.com/jquery/2.0.0/jquery.min.js
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17.  
  18. setTimeout(
  19. function(){
  20. // 删除左侧的分享按钮列表
  21. $(".article-suspended-panel.article-suspended-panel").remove();
  22. // 删除左侧广告“掘金小册”
  23. $(".index-book-collect").remove();
  24. $(".sidebar-bd-entry").remove();
  25.  
  26. // 正文最大宽屏
  27. // $(".container.main-container").css({"max-width":"92%"});
  28. // $(".container.main-container").css({"margin-left":"6%"});
  29. // 文字宽度
  30. $(".main-area.article-area").css({"width":"95%"});
  31.  
  32. // 右侧目录定位
  33. $(".sidebar.sidebar").css({"right":"-16%"});
  34.  
  35.  
  36. // 新掘金布局 margin: 0 2%;
  37. // https://juejin.im/entry/5a426dd3518825696f7e4374
  38. $(".container.main-container").css("max-width","83%");
  39. $(".container.main-container").css("margin","2%");
  40. $(".entry-public-main.shadow").css("max-width","82%");
  41.  
  42. // 隐藏掘金下载app广告
  43. $(".sidebar-block.app-download-sidebar-block.shadow").remove();
  44.  
  45.  
  46.  
  47. },1000);
  48. })();

QingJ © 2025

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