Disable modal dialogs for automation

Disables things like alert, confirm, and prompt - useful for visiting sites with an automated tool like iMacros

  1. // ==UserScript==
  2. // @name Disable modal dialogs for automation
  3. // @namespace http://userstyles.org/automation
  4. // @description Disables things like alert, confirm, and prompt - useful for visiting sites with an automated tool like iMacros
  5. // @include http://*
  6. // @include https://*
  7. // @version 18
  8. // ==/UserScript==
  9. function fixIt() {
  10. window.onbeforeunload = function() {};
  11. }
  12. fixIt();
  13. setInterval(fixIt, 500);
  14. window.alert = function() {};
  15. window.confirm = function() {};
  16. window.prompt = function() {};

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址