Skip to content

Instantly share code, notes, and snippets.

@ryanlid
Last active May 23, 2022 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanlid/fefbe4801cf68ffc31e8fd9b71620b0c to your computer and use it in GitHub Desktop.
Save ryanlid/fefbe4801cf68ffc31e8fd9b71620b0c to your computer and use it in GitHub Desktop.
微信读书全宽版
// ==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