CSDN Fucker

try to take over the world!

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