Expose CSDN Folding Content

Expand CSDN folding content, include '展开阅读全文' and '登录查看热评'

As of 2019-07-12. See the latest version.

  1. // ==UserScript==
  2. // @name Expose CSDN Folding Content
  3. // @version 1.0
  4. // @description Expand CSDN folding content, include '展开阅读全文' and '登录查看热评'
  5. // @author YuDong
  6. // @namespace YuDong/CSDN
  7. // @match https://blog.csdn.net/*
  8. // ==/UserScript==
  9.  
  10. (function () {
  11. document.getElementsByClassName('btn-readmore')[0].click()
  12. setTimeout(() => {
  13. setTimeout(() => {
  14. unsafeWindow.currentUserName = 'currentUserName'
  15. document.getElementById('btnMoreComment').click()
  16. }, 5000)
  17. }, 5000)
  18. })();