STOP_IN_500
目前為
此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/458965/1142576/STOP_IN_500.js
// ==UserScript==
// @name STOP_IN_500
// @namespace http://tampermonkey.net/
// @version 0.1
// @description STOP_IN_500
// @author You
// @match http://*/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
var pages = document.title
if (pages.includes("500")) {
let isExecuted = confirm("Are you sure to execute this action?");
if (isExecuted == true) {window.location = "https://www.fxp.co.il/";}
}
})();