CSDN Fucker

try to take over the world!

As of 2019-05-21. See the latest version.

  1. // ==UserScript==
  2. // @name CSDN Fucker
  3. // @namespace https://github.com/tampermonkeys/tampermonkey/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author おばさんは铁道を洗います
  7. // @match *://blog.csdn.net/*
  8. // @grant none
  9. // @require https://cdn.jsdelivr.net/npm/jquery@3.2.1/src/core.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $("div.article_content").removeAttr("style");
  15. $("#btn-readmore").parent().remove();
  16. $('.pulllog-box').remove();
  17. // Your code here...
  18. })();