di.user.js 696 B

123456789101112131415161718192021
  1. // ==UserScript==
  2. // @name Don't bug me, Digitally Imported
  3. // @namespace https://github.com/jonlandrum/di
  4. // @description Closes the "Are you still there?" dialog box
  5. // @include http://www.di.fm/*
  6. // @exclude https://www.di.fm/login
  7. // @grant none
  8. // @downloadURL https://github.com/jonlandrum/di
  9. // @author Jonathan Landrum
  10. // @version 1.0
  11. // ==/UserScript==
  12. /* jshint -W097 */
  13. 'use strict';
  14. setInterval(function() {
  15. var modal = document.getElementById('modal-region');
  16. if (typeof(modal) !== 'undefined' && modal !== null && modal.children.length !== 0) {
  17. document.querySelectorAll("button[type='button']")[1].click();
  18. }
  19. }, 1000);