// ==UserScript== // @name playnanoForMe // @namespace ekaraman89@hotmail.com // @version 1.0.0 // @description play nano sitesinden otomatik gecis // @author ekaraman ekaraman89@hotmail.com // @match https://playnano.online/watch-and-learn/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(function(){ if(!$($('.watch-next-btn')[0]).prop('disabled')) { $($('.watch-next-btn')[0]).click(); } }, 1500); // Your code here... })();