Greasy Fork is available in English.
美化LOFTER文章阅读界面
当前为
// ==UserScript==
// @name LOFTER阅读助手
// @version 0.1.0
// @author Supernova
// @description 美化LOFTER文章阅读界面
// @match http*://*.lofter.com/*
// @run-at document-idle
// @grant unsafeWindow
// @icon https://www.lofter.com/favicon.ico
// @namespace https://github.com/supernovaZhangJiaXing/Tampermonkey/
// @license MIT
// ==/UserScript==
'use strict';
var $ = unsafeWindow.jQuery;
// 调整主文本界面字号
$(".text").css("font-size", 20).css("line-height", 1.5);
// 调整主文本宽度
$(".box.wid700").css("width", 1280);
$(".box.block.article").eq(0).css("width", 1280);
// 热度栏宽度不变
$("#comment_frame").css("width", 1100);
$(".main.comment").css("width", 530)