Add the debugger statement in your content script
var foo = 1; debugger; foo = 2;
Open the Developer Tool on the web page where your content script is injected to see the code execution pause at those lines.