我的用户脚本使用console.log()
.
这在 Chrome 中运行良好,但是当我在 Firefox (Greasemonkey) 中安装此用户脚本时,Firefox 中的 Web 控制台没有显示任何内容。
我搜索了一个解决方案,并建议使用一些解决方案,unsafeWindow
但它也没有显示任何输出。而且unsafeWindow
不能用于镀铬。我什至安装了 Firebug,但没有用。我该如何解决这个问题?
例如,我在 Firefox 中尝试了这个用户脚本:
// ==UserScript==
// @name console
// ==UserScript==
console.log("hello");