I'm curious if it is possible to add the .js
using in Google Chrome console, so the code is executed in between the list of loaded .js
files.
As result, when the page is loaded, there are some .js
files that are loaded from top to the bottom.
<script src="js1.js" type="text/javascript"></script>
<script src="js2.js" type="text/javascript"></script>
I want to load it in this order:
<script src="js1.js" type="text/javascript"></script>
<script src="js_from_console.js" type="text/javascript"></script>
<script src="js2.js" type="text/javascript"></script>
Is it possible?