Skip to content

Instantly share code, notes, and snippets.

@bllli
Created December 25, 2018 08:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bllli/032b7a19598d4f6fb88c5df8d6f76957 to your computer and use it in GitHub Desktop.
Save bllli/032b7a19598d4f6fb88c5df8d6f76957 to your computer and use it in GitHub Desktop.
[油猴脚本]
// ==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