Greasy Fork

playnanoForMe

play nano sitesinden otomatik gecis

目前为 2020-08-30 提交的版本。查看 最新版本

// ==UserScript==
// @name         playnanoForMe
// @namespace    [email protected]
// @version      1.0.1
// @description  play nano sitesinden otomatik gecis
// @author       ekaraman [email protected]
// @match        https://playnano.online/watch-and-learn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function(){
  if(!$($('.watch-next-btn')[0]).prop('disabled'))
  {
      $($('.watch-next-btn')[0]).click();
  }
    }, 1500);
})();