Chrome扩展程序调试:立即进入调试器?

发布于 2024-12-10 19:21:18 字数 127 浏览 0 评论 0原文

如果我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倦话 2024-12-17 19:21:18

添加 debugger; 语句,并检查您的后台页面。然后,使用 F5(或控制台中的 location.reload())刷新开发人员工具。这实际上会刷新后台页面,让您从顶部调试页面。

注意:这不适用于“首次运行”代码,但适用于“启动”代码。

Add the debugger; statements, and inspect your background page. Then, use F5 (or location.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文