No more popup

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

目前為 2023-11-09 提交的版本,檢視 最新版本

// ==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();
});