Create launcher.js

This commit is contained in:
Bengt Brodersen 2015-01-23 13:45:29 +01:00
parent d14e282ea6
commit 7cc21bafc1

8
launcher.js Normal file
View File

@ -0,0 +1,8 @@
// tested for Chrome, IE
javascript:(function(){
var head = document.getElementsByTagName("head")[0];
var scriptElement = document.createElement("script");
scriptElement.src = <URL to Script>;
head.appendChild(scriptElement);
head.removeChild(scriptElement);
})();