Created
December 25, 2018 08:25
-
-
Save bllli/032b7a19598d4f6fb88c5df8d6f76957 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 去你大爷的 CSDN 全文阅读 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 把登录后查看全文阅读的那个啥玩意儿给干掉 | |
// @author laobubu | |
// @match http://blog.csdn.net/*/article/details/* | |
// @match https://blog.csdn.net/*/article/details/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
setTimeout(()=>{ | |
$(".hide-article-box").hide();$("#article_content").css("height", "auto"); | |
}, 100); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment