csdn精简个人目录页-精简

try to take over the world!

  1. // ==UserScript==
  2. // @name csdn精简个人目录页-精简
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://blog.csdn.net/*
  8. // @grant none
  9. // ==/UserScript== 如果文章页下方的推荐也去掉了,请在设置中添加相应的排除即可
  10.  
  11. (function() {
  12. 'use strict';
  13. document.domain="csdn.net";
  14. window.addEventListener ("load", pageFullyLoaded);
  15. function pageFullyLoaded () {
  16. $('.content').each(function(e,a) {
  17. a.remove();
  18. }
  19. )}
  20. // Your code here...
  21. })();