Rescue Console

Rescues the console at website refresh to prevent overwriting by the website.

目前为 2017-11-09 提交的版本。查看 最新版本

// ==UserScript==
// @name			Rescue Console
// @description		Rescues the console at website refresh to prevent overwriting by the website.
// @namespace		RescueConsole
// @author			Tobbe
// @version			1.1
//
// @include			*
//
// @run-at			document-start
//
// @grant			none
// ==/UserScript==

// Store the console to window.debugConsole to prevent overwriting by the website.
try {
    window.wrappedJSObject.debugConsole = window.console;
} catch(e) {
    window.debugConsole = window.console;
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址