用于调试的脚本库
اعتبارا من
لا ينبغي أن لا يتم تثبيت هذا السكريت مباشرة. هو مكتبة لسكبتات لتشمل مع التوجيه الفوقية // @require https://update.greasyfork.org/scripts/34143/230828/debug.js
// ==UserScript==
// @name debug
// @namespace https://github.com/yeomanye
// @version 0.5.1
// @include *://*
// @description 用于调试的脚本库
// @author Ming Ye
// ==/UserScript==
// 开启调试
var consoleFactory = function(prefix, type,suffix,debugMode) {
prefix = prefix || "";
type = type || "log";
suffix = suffix || "";
return function(msg){
if (debugMode) {
var arguments = Array.prototype.slice.apply(arguments);
arguments.unshift(prefix);
arguments.push(suffix);
console[type].apply(null,arguments);
}
};
};
// 当参数为true时开启调试
var debugTrue = function(isDebugger){
if(isDebugger) debugger;
}