Greasy Fork is available in English.

微信读书 滑轮 翻页

鼠标滑轮翻页

// ==UserScript==
// @name         微信读书 滑轮 翻页
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  鼠标滑轮翻页
// @author       You
// @match        https://weread.qq.com/*
// @icon         https://rescdn.qqmail.com/node/wr/wrpage/style/images/independent/favicon/favicon_16h.png
// @grant        none
// @license MIT
// ==/UserScript==

// api           https://www.tampermonkey.net/documentation.php

(function () {
    "use strict";
    window.addEventListener("wheel", (e) => {

        if(e.deltaY > 0){
            document.querySelector(".renderTarget_pager_button_right").click();
        }else{
            document.querySelector(".renderTarget_pager_button").click();
        }

    });
    const style = document.createElement("style");
    style.innerText = ".reader_pdf_tool { display: none !important }";
    document.body.appendChild(style);
  })();