Prevents from leaving page in clickb8
目前為
// ==UserScript==
// @name Prevents from leaving page
// @namespace http://tampermonkey.net/
// @version 1.01
// @description Prevents from leaving page in clickb8
// @author meatman2tasty
// @match http://clickb8.io/*
// @grant none
// ==/UserScript==
window.onbeforeunload = function() {
return "Are you sure you want to navigate away?";
};