我正在遵循创建chrome扩展的基础知识 https://developer.chrome.com/extensions/getstarted 我放置了一个console.log()语句,但它不会显示,我是否应该使用其他API来记录控制台上的内容?
答案 0 :(得分:5)
不,你应该寻找合适的地方。
可以通过开发者模式中的扩展程序列表访问background或event page的控制台和开发工具 - will be a link under the extension listing。
额外注意:事件页面的卸载会丢失日志。
popup page的控制台和开发工具accessible through right-clicking the action's button并选择“检查弹出窗口”。
content script的控制台和开发工具可以通过普通的开发工具访问内容脚本执行的页面。
额外注意:由于内容脚本executes in a different context,如果要在其中运行命令,则需要select that context above the console,而不是页面本身。