JavaScript in seotools?

Hi,

I'm new here and need a lil help. I'm not sure if this is possible but I thought I give it a shot. I have a JavaScript for bookmarklet which gives info about what web technologies a particular website is using. Is there way I can put the URLs in an excel sheet and use the JavaScript to scan the URLs and fetch results?

Here is the link to the bookmarklet (https://wappalyzer.com/download)

And here is the java script:

javascript:%20(function()%20%7B%20var%20d%20=%20document,%20e%20=%20d.getElementById('wappalyzer-container')%20;%20if%20(%20e%20!==%20null%20)%20%7B%20d.body.removeChild(e);%20%7D%20var%20u%20=%20'https://wappalyzer.com/bookmarklet/',%20t%20=%20new%20Date().getTime(),%20c%20=%20d.createElement('div'),%20p%20=%20d.createElement('div'),%20l%20=%20d.createElement('link'),%20s%20=%20d.createElement('script')%20;%20c.setAttribute('id',%20'wappalyzer-container');%20l.setAttribute('rel',%20'stylesheet');%20l.setAttribute('href',%20u%20+%20'css/wappalyzer.css');%20d.head.appendChild(l);%20p.setAttribute('id',%20'wappalyzer-pending');%20p.setAttribute('style',%20'background-image:%20url('%20+%20u%20+%20'images/pending.gif)%20!important');%20c.appendChild(p);%20s.setAttribute('src',%20u%20+%20'js/wappalyzer.js?'%20+%20t);%20s.onload%20=%20function()%20%7B%20s%20=%20d.createElement('script');%20s.setAttribute('src',%20u%20+%20'js/apps.js?'%20+%20t);%20s.onload%20=%20function()%20%7B%20s%20=%20d.createElement('script');%20s.setAttribute('src',%20u%20+%20'js/driver.js?'%20+%20t);%20c.appendChild(s);%20%7D;%20c.appendChild(s);%20%7D;%20c.appendChild(s);%20d.body.appendChild(c);%20%7D)();

Any help is graciously appreciated. Thank you.