您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
https://www.koolearn.com/单词字体放大
当前为
// ==UserScript== // @name 新东方词库单词字体放大 // @namespace http://tampermonkey.net/ // @version 0.2.2 // @description https://www.koolearn.com/单词字体放大 // @author You // @match https://www.koolearn.com/dict/* // @icon https://www.google.com/s2/favicons?sz=64&domain=koolearn.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here... for (const element of document.querySelector(".word-box").querySelectorAll('.word')) { element.style.fontSize = "40px" element.style.padding = "10px" element.style.margin = "30px" } document.querySelector(".content-box iframe").style.display='none' document.querySelector(".content-wrap").querySelector(".left-content").querySelector(".word-title").querySelector(".word-spell").style.fontSize = "100px" document.querySelector(".details-content-title-box p").style.fontSize = "50px" document.querySelector(".details-content-title-box p").style.lineHeight = "50px" //document.querySelector(".content-wrap").querySelector(".left-content").document.querySelector(".content-box").querySelector(".details-content").querySelector(".word-spell-box").querySelector(".word-spell-audio").style.width = "100px" //document.querySelector(".content-wrap").querySelector(".left-content").document.querySelector(".content-box").querySelector(".details-content").querySelector(".details-content-title-box").style.width = "100px" })();