Greasy Fork is available in English.
disable unload confirmation
// ==UserScript==
// @name Disable Unload Confirmation
// @namespace https://github.com/to
// @version 0.1
// @description disable unload confirmation
// @match https://*.apple.com/*
// @icon https://www.google.com/s2/favicons?domain=apple.com
// @run-at document-start
// ==/UserScript==
window.addEventListener('beforeunload', (e) => {
e.stopPropagation();
e.stopImmediatePropagation();
}, true);