// ==UserScript== // @name 调试时阻止页面跳转 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author dingjz // @match http://*/* // @match https://*/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.onbeforeunload = function(event) { console.log(event); return false; } // Your code here... })();