Greasy Fork is available in English.

21tb

21tb 学习连续播放(下一节,下一步)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2. // @license pswmz
  3. // @name 21tb
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.3
  6. // @description 21tb 学习连续播放(下一节,下一步)
  7. // @author pswmz
  8. // @match *://*.21tb.com/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=21tb.com
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. function next11(){
  16.  
  17. // var xyb = document.querySelector('.cl-go-link') //下一步
  18. // if(xyb != null){
  19. // xyb.click();
  20. // console.log('====================下一步 点击成功=======================');
  21. // }
  22.  
  23. //let finishFlag = document.querySelector('.finish-tig finish-tig-item')
  24.  
  25. var nextFlag = document.querySelector('.next-button') // 下一节
  26. if (nextFlag != null ){
  27.  
  28. nextFlag.click();
  29. console.log('====================下一节 点击成功=======================');
  30. }
  31.  
  32.  
  33.  
  34.  
  35. }
  36. //document.querySelector('iframe').contentWindow.document.querySelectorAll('li.innercan.track-course-item>a')[0].click()
  37.  
  38. setInterval(next11,6000)
  39.  
  40.  
  41. })();