Is there a way to clear up GM_log messages from error console from userscripts on a certain event?
I don't want to clear up manually. On trigger of certain event, want to clear up the old log from the error console and show up the new log.
Is there a way to clear up GM_log messages from error console from userscripts on a certain event?
I don't want to clear up manually. On trigger of certain event, want to clear up the old log from the error console and show up the new log.
エラー コンソールをクリアすることはできません。できれば、悪意のある Web サイトもそれを消去し、悪行の記録を消去することができます。
いずれにせよ、もう使用しないでくださいGM_Log()
。 Firebugとそれが提供する優れたコンソール ロギング機能を使用します。
その後、使用できますconsole.clear()
。
Firefox の新しいconsole
機能との競合を回避し、出力が Firebug のコンソールに確実に表示されるようにするには、呼び出しの前にunsafeWindow
.
したがって、スクリプトは次のようになります。
unsafeWindow.console.clear ();
unsafeWindow.console.time ('ScriptRun');
unsafeWindow.console.log ("Script start." );
unsafeWindow.console.timeEnd ('ScriptRun');
Firebug コンソールでは次のようになります。
-- 前述のクラフトはすべて削除されています。clear()
(ただし、呼び出し後に Web ページが行うことはすべて表示されます。)