您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
make the h2, h3 and a visible as they have weird color scheme
// ==UserScript== // @name oreilly style wider reading // @namespace https://learning.oreilly.com/ // @version 0.1 // @description make the h2, h3 and a visible as they have weird color scheme // @author Sagar Yadav // @match https://learning.oreilly.com/* // @icon https://images.g2crowd.com/uploads/product/image/large_detail/large_detail_0fd365ee7f3306426d937d338cc69e54/o-reilly.png // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; setTimeout(function() { var readwidth = document.getElementsByClassName('orm-ChapterReader-readerContainer')[0]; document.getElementsByClassName("orm-ChapterReader-readerContainer")[0].style.maxWidth = "120ch"; }, 1000); })();