您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Constrain the width of Glowfic posts to a constant value
// ==UserScript== // @name Glowfic Max-Width // @version 1 // @description Constrain the width of Glowfic posts to a constant value // @author Nexidava // @namespace https://greasyfork.org/en/users/725254 // @match *://glowfic.com/posts/* // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org // @grant none // @license GPL-3.0 <https://www.gnu.org/licenses/gpl.html> // ==/UserScript== (function() { var content = document.getElementById("content"); content.style.maxWidth = "1000px"; content.style.margin = "0 auto"; })();