Greasy Fork is available in English.

fuck_csdn_blog

自动阅读全文

Verze ze dne 03. 05. 2018. Zobrazit nejnovější verzi.

  1. // ==UserScript==
  2. // @name fuck_csdn_blog
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 自动阅读全文
  6. // @author You
  7. // @match https://blog.csdn.net/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. if($('#btn-readmore') && $('#btn-readmore').length > 0){
  14. console.log('auto read more');
  15. $('#btn-readmore').click();
  16. }
  17. // Your code here...
  18. })();