Disable Confirmations

Disables the are you sure you want to leave this page confirmations.

  1. // ==UserScript==
  2. // @name Disable Confirmations
  3. // @namespace http://samueldillow.com/
  4. // @version 0.1
  5. // @description Disables the are you sure you want to leave this page confirmations.
  6. // @author Samuel Dillow
  7. // @match http://*/*
  8. // @match https://*/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var removeBefores, timeout;
  13.  
  14. removeBefores = function() {
  15. // Remove the before
  16. window.onbeforeunload = null;
  17. // Fibbonacci the delays to prevent spammage while keeping tabs on the timeout
  18. timeout = (timeout + timeout) || 1000;
  19. // Do it again when we time out
  20. setTimeout(removeBefores, timeout);
  21. };
  22.  
  23. removeBefores();