Deezer Skip Unlimited

Skip an unlimited amount of songs with your free deezer account

  1. // ==UserScript==
  2. // @name Deezer Skip Unlimited
  3. // @namespace Steve2955
  4. // @description Skip an unlimited amount of songs with your free deezer account
  5. // @include http://*.deezer.*/*
  6. // @run-at document-start
  7. // @version 1.0
  8. // ==/UserScript==
  9.  
  10. window.addEventListener("load", function() {
  11. var buttonSkip = document.querySelector('#page_player > div.player-bottom > div.player-controls > ul > li:nth-child(5) > div > button');
  12. buttonSkip.addEventListener("click", function(e) {
  13. dzPlayer.radioSkipCounter=1;
  14. }, false);
  15. }, true);