Last active
May 23, 2022 03:16
-
-
Save ryanlid/fefbe4801cf68ffc31e8fd9b71620b0c to your computer and use it in GitHub Desktop.
微信读书全宽版
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 微信读书全宽版 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://weread.qq.com/web/reader/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle( | |
`.readerContent .app_content{max-width:unset !important} | |
.readerTopBar{max-width:unset !important} | |
.wr_canvasContainer{width:100% !important} | |
.readerControls{left:auto;right:10px} | |
.readerCatalog{left:auto;right:100px;}` | |
) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment