javascript-跨浏览器console.log中的oilmonkey / chrome用户脚本
作者:互联网
您如何在油脂猴子脚本中使用console.log?我没有任何输出.
// ==UserScript==
// @name test
// @namespace test
// @description test
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js
// @version 1.2
// ==/UserScript==
console.log('test');
我觉得您可以在Chrome中正常使用console.log.有没有很好的包装器,以便您可以登录Firefox和Chrome浏览器?
解决方法:
console.log将出现在Firefox的错误控制台中(工具->错误控制台或CTRL SHIFT J)
将其更改为unsafeWindow.console.log将使日志显示在Firebug中.使用unsafeWindow之前,请确保已阅读有关unsafeWindow的安全问题.
如您所说,让日志显示在Firebug中的另一种方法是将其保留为console.log,但打开extensions.firebug.showChromeErrors和extensions.firebug.showChromeMessages.可以通过在Firefox地址栏中键入about:config来完成.然后过滤Chrome.找到两个选项,然后双击将其打开.
所有Firefox示例均适用于Firefox 5.0
标签:userscripts,logging,greasemonkey,firebug,javascript 来源: https://codeday.me/bug/20191102/1991636.html