Created
April 10, 2024 06:09
-
-
Save hax0kartik/4b9cb36d000ecc6da7274adb39822649 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Remove blur event | |
// @version 0.1 | |
// @description Remove all blur events | |
// @author unknown | |
// @match ** | |
// @grant none | |
// ==/UserScript== | |
window.addEventListener("blur", function(event) { | |
event.stopImmediatePropagation(); | |
}, true); | |
window.addEventListener("visibilitychange", function(event) { | |
event.stopImmediatePropagation(); | |
}, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment