// ==UserScript== // @name 去除网页debugger // @namespace http://tampermonkey.net/ // @version 0.1 // @description 去除网页烦人的debugger // @author 记录微笑 // @grant none // @match *://*/* // @run-at document-start // ==/UserScript== (function() { 'use strict'; var _constructor = Function.prototype.constructor; Function.prototype.constructor = function(data){ if("debugger" == data){ return null; } return _constructor(data); } })();