您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
修改字体、颜色,阅读时宽屏,隐藏一切
当前为
// ==UserScript== // @name 微信读书 // @namespace http://tampermonkey.net/ // @version 0.21 // @description 修改字体、颜色,阅读时宽屏,隐藏一切 // @author Oscar // @match https://weread.qq.com/web/reader/* // @license AGPL License // @grant GM_addStyle // ==/UserScript== GM_addStyle(` * { font-family: 'Times New Roman', 'SimSun' !important; } /*字体*/ /*.wr_whiteTheme *{color: rgba(20,20,92,100) !important; }*/ /*字颜色*/ .wr_whiteTheme .readerContent .app_content { background-color: rgba(249,243,227,100) !important; } /*日间模式背景颜色*/ img.wr_readerImage_opacity { opacity: 0.8 !important; } /*图片透明度*/ .readerControls { margin-left: calc(50% - 80px) !important; } /*右移控制栏*/ .app_content, .readerTopBar { max-width: 100% !important; } /*内容和顶部导航宽屏*/ .readerControls, .readerTopBar { opacity: 0; } /*控制栏和顶部导航透明度*/ .readerCatalog { left: 0 !important; } /*目录靠边*/ .readerNotePanel { left: unset; right: 0 !important; } /*笔记靠边*/ `); (function () { 'use strict'; var readerControls = document.querySelector('.readerControls'); var readerTopBar = document.querySelector('.readerTopBar'); if (readerControls && readerTopBar) { [readerControls, readerTopBar].forEach(function(control) { control.addEventListener('mouseenter', function() { this.style.opacity = '1'; }); control.addEventListener('mouseleave', function() { this.style.opacity = '0'; }); }); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址