I try to write a custom extension for the Jupyter Notebook, as described here: https://towardsdatascience.com/how-to-write-a-jupyter-notebook-extension-a63f9578a38c
I use the Chrome developer tools on Windows7 to inspect and edit the Javascript source code of my custom extension. I hoped that when pressing F5 to update the page, my altered source code would be immediately applied.
However, as stated in the above mentioned article, I have to run
jupyter-contrib-nbextensions.exe install
and restart the server to refresh the notebook extension and to see the effects of my code changes.
Doing so after every little change is quite annoying when playing around and developing/debugging extensions.
=>Is there some sort of development option for automatically updating/reloading the extension?