csdn-reader-more

csdn去除阅读更多需登录步骤

  1. // ==UserScript==
  2. // @name csdn-reader-more
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description csdn去除阅读更多需登录步骤
  6. // @author You
  7. // @match https://*.csdn.net/*/article/details/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.getElementById('article_content').style=""
  14. document.getElementsByClassName('hide-article-box')[0].style="display:none"
  15. // Your code here...
  16. })();