For integration purpose I use javascript file from other provider. I add it to my site in next way
var other = document.createElement('script');
other.type = 'text/javascript';
other.async = true;
other.src = SOME_URL_ON_OTHER_DOMAIN;
(document.getElementsByTagName('body')[0]).appendChild(other);
Now I would like to change it content. Could I do this myself on browser side without changing on javascript provider side? It would be fine it will be not cross browser solution.