3246276600 / New Userscript

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://open.spotify.com/*
// @require      http://code.jquery.com/jquery-1.12.4.min.js
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  function Next() {

    if (document.querySelector('.playback-bar').firstChild.innerHTML.substring(2) > 31) {
      console.log('si')
      document.querySelector('[title="Avanti"]').click();

    }
    console.log('no')
    setTimeout(Next, 5000);
  }

  setTimeout(function () {
    document.querySelector('[title="Play"]').click();
    Next();
  }, 10000);
  setTimeout(function () {
    document.querySelector('[title="Abilita riproduzione casuale"]').click()
  }, 15000);
  setTimeout(function () {
    document.querySelector('[title="Abilita ripetizione"]').click()
  }, 17000);
  setTimeout(function () {
    window.location.href = "http://www.cecchele.it/Music.php";
  }, 1500000);

})();