Greasy Fork

Greasy Fork is available in English.

新东方词库单词字体放大

https://www.koolearn.com/单词字体放大

当前为 2023-02-09 提交的版本,查看 最新版本

// ==UserScript==
// @name         新东方词库单词字体放大
// @namespace    http://tampermonkey.net/
// @version      0.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"
    }

    document.querySelector(".content-box iframe").style.display='none'

    document.querySelector(".left-content").style.width = '400px';
})();