Remove Alerts on kiwiexploits.com [Extention]

Removes all JavaScript alerts on kiwiexploits.com (This is an extention of Kiwi auto Key Gen)

  1. // ==UserScript==
  2. // @name Remove Alerts on kiwiexploits.com [Extention]
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Removes all JavaScript alerts on kiwiexploits.com (This is an extention of Kiwi auto Key Gen)
  6. // @author Foch2803
  7. // @match https://kiwiexploits.com/*
  8. // @icon https://avatars.githubusercontent.com/u/139727811?s=400&u=a73138b011a6f48b9eaad88da89aa9fedd35d6cf&v=4
  9. // @icon64 https://avatars.githubusercontent.com/u/139727811?s=400&u=a73138b011a6f48b9eaad88da89aa9fedd35d6cf&v=4
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. window.alert = function() {};
  17. window.prompt = function() {};
  18. window.confirm = function() { return true; };
  19. const installButton = document.getElementById('install-button');
  20.  
  21. if (installButton) {
  22. const connectedText = document.createElement('p');
  23. connectedText.textContent = 'Connected to Alert Remover';
  24. connectedText.style.textAlign = 'center';
  25. installButton.insertAdjacentElement('afterend', connectedText);
  26. installButton.remove();
  27. setTimeout(() => {
  28. connectedText.style.opacity = '0';
  29. connectedText.style.transition = 'opacity 0.5s ease';
  30.  
  31. setTimeout(() => {
  32. connectedText.remove();
  33. }, 500);
  34. }, 3000);
  35. }
  36. })();