Questions tagged [chrome-debugging]

100 questions
2
votes
0 answers

Is there a way to prevent chrome access to IndexedDB?

Is there a way to prevent google chrome access to IndexedDB ? Want it for testing errors while writing to IndexedDB...
Zvi Redler
  • 1,708
  • 1
  • 18
  • 29
2
votes
1 answer

How do you debug Visual Studio + Angular + Firebase + Chrome (browser or app not secure error)?

I'm using Visual Studio to debug an Angular application that needs to authenticate through Firebase. I've installed the "Debugger for Chrome" and things are working fine until... I need to login which authenticates via Firebase. At that point Chrome…
2
votes
3 answers

Chrome Dev Tools stops at breakpoint even when breakpoints are deactivated

I encountered an issue while debugging Javascript in the Dev Tools in Chrome. Even when I have deactivated the breakpoints from the button, it still stops at them. like this I haven't enabled the "Pause on exceptions" button and the only thing that…
2
votes
0 answers

How To Use Chrome Developer Profile with Visual Studio Code Debugger

Our team working in a angular project using the visual code as the the editor . Each team member have the separate copy of the project(same computer different folder) connected through common git repository. We debug the angular code using the…
rakshith
  • 704
  • 2
  • 10
  • 23
2
votes
3 answers

Chrome debugger - how to go to next line without entring in function?

For example: const x = 10 const f1 = () => {/* do something... */} f1() // <<-- I'm here console.log(x) // I want to go here without entring to f1 AT ALL but still let f1 execute. I want to let f1 execute but I don't want to go over it. Is it…
Stav Alfi
  • 13,139
  • 23
  • 99
  • 171
2
votes
2 answers

Visual Studio Code Chrome Debugger doesn't set breakpoints inside generator function in React

I am using the latest Visual Studio Code and Chrome debugger extension and my code is React SPA. When I am trying to set breakpoints inside generator functions (i.e. function* ), the breakpoint is moved to the top of the function and I can’t stop…
2
votes
0 answers

How to configure VSCode for debugging React-Native with chrome debugging tools?

I'd like some simple steps for beginners on how to properly accomplish this for react-native. There are tutorials for Reactjs, and for Angular but not for react-native and it's proving difficult to accomplish.
arshbot
  • 12,535
  • 14
  • 48
  • 71
1
vote
1 answer

How to debug my Node.js TypeScript project in Chrome dev tools

I am trying to add a debug script in my package.json file. For a plain Node project this code works: "debug": "node --inspect index.js" And for Node TypeScript project I did this: "debug": "ts-node --inspect --require ts-node/register…
1
vote
0 answers

Dependency Source Code Debug React Native

I am working on a local dependency/library for my react native app. I want to debug that locally added dependency for a react native app in my chrome/Web Storm debugger. Debugger connection is successful, however for library files only 'dist' folder…
1
vote
0 answers

How to suppress "Readers took over 1500ms. Possible deadlock?" exception in DevTools-on-DevTools for a custom DevTools panel in my Chrome Extension?

To debug scripts in my extension's custom DevTools panel I open another DevTools window over this panel, as it is explained here. Then I return to my DevTools panel, and then, say, go to read documentation in another window of another browser. In…
1
vote
0 answers

Values are shown on Double click of an variable in chrome debugger

Values are shown on Double click of an variable in chrome debugger! but not on hover.. Can anyone explain why the values are not shown on hover instead on double click? values not shown on hover Values shown on double click
1
vote
1 answer

Latest Angular Updates result in breakpoints not breaking. Circa versions 12 & 13

The previous version of package 'angular-devkit/build-angular': '0.1102.10', that being "0.1102.9", works fine and I'm able to access breakpoints in the browser like normal. But with '0.1102.10' it brings the following error upon 'npm start' (after…
Evan Sevy
  • 659
  • 1
  • 13
  • 25
1
vote
2 answers

Cannot use css debugger for offline html files

I’m new here and to web development so forgive me if I’m asking such a simple question. When I use a CSS debugger chrome extension, they work on websites but do not work on my local HTML file in the browser. Can anyone explain why and/or provide a…
zeroproof
  • 11
  • 1
1
vote
0 answers

Chrome developer tool freezes

I'm unable to debug my web page on local host. On opening the developer tool,and clicking the source tab.. It gets hang/freeze. For other sites like YouTube.. It's working fine. I read somewhere it's something to do with setting previousviewedfiles…
Rebecca
  • 45
  • 8
1
vote
1 answer

Chrome developer tool how to profile webworkers?

I looked at How to profile web workers in Chrome? etc but the advise there is for older versions of chrome and now seem to be dated. How can I profile the memory of a web worker (take snapshots and compare them) in chrome >86 ?
kofifus
  • 17,260
  • 17
  • 99
  • 173