CSDN展开

CSDN不用展开直接查看全文

当前为 2021-08-12 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name CSDN展开
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description CSDN不用展开直接查看全文
  6. // @author Johu
  7. // @match *://*.csdn.net/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.getElementById('article_content').style.height= 'auto'
  14. document.getElementsByClassName('hide-article-box')[0].style.display = 'none'
  15. document.getElementsByClassName('toolbar-advert')[0].style.display = 'none'
  16. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址