Gaana No Autoplay and No Alerts

Auto Clicks Autoplay Button and Prevents Alerts

// ==UserScript==
// @name             Gaana No Autoplay and No Alerts
// @namespace   tuktuk3103@gmail.com
// @description   Auto Clicks Autoplay Button and Prevents Alerts
// @include          https://gaana.com/*
// @version          1.00
// @grant              none
// @icon                https://css375.gaanacdn.com/images/favicon.ico
// ==/UserScript==


function PageLoaded() {

  if(document.getElementById("queue_mode").textContent.toUpperCase() == "ON"){
    var evt = document.createEvent("MouseEvents");
    evt.initEvent("click", true, true);
    document.getElementById("queue_mode").dispatchEvent(evt);
  }
  window.onbeforeunload = null;

};

window.addEventListener ('load', PageLoaded);