Google Chrome远程调试 - 添加断点

时间:2012-07-12 09:40:29

标签: javascript google-chrome-extension remote-debugging google-chrome-devtools

我正在尝试使用chrome扩展程序自动添加断点

首先,我在特定的scriptId中搜索特定内容,然后在搜索结果中的相同位置添加断点

这是我使用的代码:

chrome.debugger.sendCommand(debuggeeId,"Debugger.searchInContent",
{scriptId:scriptId,query:"function"},function(result){
    for(x in result.result){
        var lineNumber = result.result[x].lineNumber+1;
        chrome.debugger.sendCommand(debuggeeId,"Debugger.setBreakpoint",{location:{scriptId:scriptId,lineNumber:lineNumber }});
    }
});

总而言之,我在错误的地方得到了断点我甚至不确定如何检查断点在哪里,但它肯定不会在正确的位置停止......

我做错了什么?

0 个答案:

没有答案