Greasy Fork is available in English.

HoloLens Device Portal - Skip Confirmation

HoloLens Device Portal - Skip Confirmation.

// ==UserScript==
// @name         HoloLens Device Portal - Skip Confirmation
// @description  HoloLens Device Portal - Skip Confirmation.
// @version      0.1
// @namespace    https://github.com/to
// @license      MIT
//
// @include 
// @icon         https://www.google.com/s2/favicons?sz=64&domain=www.microsoft.com
// 
// @grant        unsafeWindow
// ==/UserScript==

var skips = [
	'Are you sure you want to restart',
	'Are you sure you want to shutdown',
	'Permanently delete',
	'Do you want to close',
];
var _confirm = unsafeWindow.confirm;
unsafeWindow.confirm = (message) => {
	console.log(message);

	// 省略対象のメッセージか?
	if (skips.some(skip => message.startsWith(skip)))
		return true;

	return _confirm(message);
}