您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A user script to enchance OpenMathBooks page styles
// ==UserScript== // @name Better OpenMathBooks Styles // @namespace https://greasyfork.runtimutd.eu.org/en/users/1019658-aayush-dutt // @version 0.2 // @description A user script to enchance OpenMathBooks page styles // @author aayushdutt // @match https://discrete.openmathbooks.org/* // @grant none // @link https://greasyfork.runtimutd.eu.org/en/scripts/466283-better-openmathbooks-styles // @license MIT // ==/UserScript== (function() { 'use strict'; const styles = `<style> header#masthead { max-width: 100% !important; } div#content { margin: 24px auto !important; max-width: 900px !important; } p { line-height: 1.7 !important; } </style>` document.head.insertAdjacentHTML("beforeend", styles) })();