BingGPT icon indicating copy to clipboard operation
BingGPT copied to clipboard

How to save 60 plus MBs while installing an Electron App for a web link

Open subhaniminhas opened this issue 1 year ago • 0 comments

So here is what i did to save me the trouble of installing a deb file

  1. Create an html file like this:
AI Engines
<script>
    function openNewWindow(url) {
        var height = window.screen.height - 100;
        var width = window.screen.width / 3;
        var left = window.screen.width;
        window.open(url, '_blank', 'height=' + height + ',width=' + width + ',left=' + left);
        window.close();
    }
</script>
  1. Put the link on desktop. Open it to use all these links.

subhaniminhas avatar Jun 20 '24 06:06 subhaniminhas