chestnut
chestnut

Reputation: 351

how to configure chrome developer tool not to debug all extension scripts

I have opened Enable frameworks debugging support flag in chrome experiments. There was a pattern used to skip stepping through scripts. As there were a lot of chrome Extensions, I could hardly type them all with or logic operator in the pattern input. Is there a flag used to skip all extension scripts?

Upvotes: 5

Views: 2733

Answers (1)

aandrey
aandrey

Reputation: 116

You can star the bug at http://crbug.com/160207 to follow the progress.

Blackbox feature in Chrome: http://crbug.com/267592

Meanwhile, just add this regex pattern to blackbox all content scripts: ^chrome-extension://

Upvotes: 9

Related Questions