No more popup

stops the pop up when you try to leave a website.

// ==UserScript==
// @name        No more popup
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      qeqeqe_player533_1025
// @description stops the pop up when you try to leave a website.
// @license MIT
// ==/UserScript==
window.addEventListener('beforeunload', function (event) {
  event.stopImmediatePropagation();
});

QingJ © 2025

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