Chrome developer tools allows you to edit javascript in the browser if the javascript is in a .js file. However, it does not seem to allow me to edit javascript that is embedded
Actually chrome allows to do that, choose HTML files in Sources tab in Developer tools window. You will see HTML instead of javascript and simply add breakpoints in the tags. Also you can add
debugger;
command to script what you want to debug. For example:
Don't forget to remove debugger;
's when you want to release your website.