CSDN

CSDN优化

As of 2019-02-22. See the latest version.

  1. // ==UserScript==
  2. // @name CSDN
  3. // @namespace https://c332030.github.io
  4. // @version 1.0
  5. // @description CSDN优化
  6. // @author c332030
  7. // @match https://*csdn.net*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. /*
  14. 自动选择博客分类和博客类型
  15. */
  16. document.getElementById("selType").value = '1';
  17. document.getElementById("radChl").value = '16';
  18.  
  19. /*
  20. 自动展开
  21. */
  22. document.getElementById("btn-readmore").click();
  23. })();