Greasy Fork is available in English.

No CSDN Download

隐藏 CSDN 博客下方推荐列表中的 download.csdn.net 和 wenku.csdn.net 链接

  1. /* ==UserStyle==
  2. @name No CSDN Download
  3. @namespace no_csdn_download
  4. @version 0.1.0
  5. @description 隐藏 CSDN 博客下方推荐列表中的 download.csdn.net 和 wenku.csdn.net 链接
  6. @author lingbopro
  7. @license WTFPL
  8. @preprocessor stylus
  9. @var checkbox hide_download "隐藏下载(download.csdn.net)" 1
  10. @var checkbox hide_wenku "隐藏文库(wenku.csdn.net)" 1
  11. ==/UserStyle== */
  12. @-moz-document domain("blog.csdn.net") {
  13. .recommend-box {
  14. if (hide_download) {
  15. .recommend-item-box:has(a[href^='https://download.csdn.net']),
  16. .recommend-item-box.type_download {
  17. display: none;
  18. }
  19. }
  20.  
  21. if (hide_wenku) {
  22. .recommend-item-box:has(a[href^='https://wenku.csdn.net']),
  23. .recommend-item-box type_c_download {
  24. display: none;
  25. }
  26. }
  27. }
  28. }