Chrome扩展程序调试:立即进入调试器?
如果我在 chromium 扩展的后台 js 中设置断点,然后禁用/启用它,则不会命中断点。我尝试在js中添加debugger;
,但仍然无法进入调试器。
有没有办法在安装或启用扩展后立即进入调试器?
If I set breakpoints in the background js of my chromium extension, then disable/enable it, the breakpoints are not hit. I've tried adding debugger;
in the js, but I still cannot enter the debugger.
Is there a way to enter the debugger immediately upon installing or enabling an extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
debugger;
语句,并检查您的后台页面。然后,使用F5
(或控制台中的location.reload()
)刷新开发人员工具。这实际上会刷新后台页面,让您从顶部调试页面。注意:这不适用于“首次运行”代码,但适用于“启动”代码。
Add the
debugger;
statements, and inspect your background page. Then, useF5
(orlocation.reload()
from the console) to refresh the Developer Tools. This will actually refresh the background page, letting you debug the page from the top.Note: this will not work for "first run" code, but will for "start up" code.