BingGPT
BingGPT copied to clipboard
How to save 60 plus MBs while installing an Electron App for a web link
So here is what i did to save me the trouble of installing a deb file
- Create an html file like this:
<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>
- Put the link on desktop. Open it to use all these links.