Нашел в сети пример как загрузить скрипт через data:uri но этот пример не работает(
function openFile(textToEncode, contentType) {
    var encodedText = window.btoa(textToEncode);
    var dataURL = 'data:' + contentType + ';base64,' + encodedText;
    window.location = dataURL; 
   
}
function initpage(){
openFile("utf-8","js/jquery.js");
openFile("utf-8","js/progr.js");
openFile("utf-8","/favicon.ico");
}