LOFTER阅读助手

美化LOFTER文章阅读界面

  1. // ==UserScript==
  2. // @name LOFTER阅读助手
  3. // @version 0.1.6
  4. // @author Supernova
  5. // @description 美化LOFTER文章阅读界面
  6. // @match http*://*.lofter.com/*
  7. // @run-at document-idle
  8. // @grant unsafeWindow
  9. // @icon https://www.lofter.com/favicon.ico
  10. // @namespace https://github.com/supernovaZhangJiaXing/Tampermonkey/
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14.  
  15. 'use strict';
  16. var $ = unsafeWindow.jQuery;
  17.  
  18. $(document).ready(function () {
  19. // 调整主文本界面字号
  20. $(".text").css("font-size", 18).css("line-height", 1.8);
  21. $(".txtcont").css("font-size", 18).css("line-height", 1.8);
  22.  
  23. // 调整主文本宽度
  24. $(".box.wid700").css("width", $(window).width() * 0.618);
  25. $(".box.block.article").eq(0).css($(window).width() * 0.618);
  26.  
  27. // 热度栏宽度不变
  28. $("#comment_frame").css("width", $(".content").width());
  29. $(".main.comment").css("width", 530);
  30. });

QingJ © 2025

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