// ==UserScript== // @name 小说适配器 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 修改字体 // @author You // @match https://www.kdzw.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var o = document.getElementsByClassName("content")[0]; //0代表第一个,option是标签名 o.setAttribute("style","font-size: 40px;"); //设置属性value为10 // Your code here... })();