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.5.2 | |
// @description 下载微信读书的书籍资源 | |
// @author tang | |
// @match https://weread.qq.com/web/reader/* | |
// @grant unsafeWindow | |
// @grant GM_setValue | |
// @grant GM_getValue |
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
/* inline formatting, link targets and [[ ]] disappears if not active line*/ | |
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-formatting, | |
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-string.cm-url, | |
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-formatting-link, | |
div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-hmd-barelink, | |
div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-comment | |
{ display: none; } | |
/* hide all html tags -- IT IS COMMENTED OUT BY DEFAULT */ | |
/* div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-tag{ display: none; } */ |