Rescue Console

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

当前为 2014-11-07 提交的版本,查看 最新版本

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

// Store the console to window.debugConsole to prevent overwriting by the website.
window.debugConsole = window.console;