Filmarks - Stop Spoiler Confirmation

Filmarks - Stop Spoiler Confirmation .

// ==UserScript==
// @name         Filmarks - Stop Spoiler Confirmation
// @description  Filmarks - Stop Spoiler Confirmation .
// @version      0.3
// @author       to
// @namespace    https://github.com/to
// @license      MIT
//
// @noframes
// @match        https://filmarks.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=filmarks.com
// 
// @grant        unsafeWindow
// ==/UserScript==

const _confirm = unsafeWindow.confirm;
unsafeWindow.confirm =
	message => (/ネタバレ/).test(message) ?
		true :
		_confirm(message);