I have a local javascript file. I want to be able to load it automatically on an external website (a tumblr blog in my case) every time when the page reloads.
I'm working on Chrome, and currently every time I want to see the effects of my script, I have to go to Developer tools and insert this into the HTML:
<script src="file:///C:/Users/decho/Desktop/script.js"></script>
Obviously the changes I make are gone every next time I refresh the page and that's a very inconvenient way to work on it. Tumblr lets you modify the HTML so I added a link to my script, but it got rejected because it's a local file (probably for security reasons).
So my question is, is there any easy and convenient way to load a local script to an existing website, without having to manually edit the HTML with Developer tools every time you reload?