Windy

Windy everywhere for free https://usewindy.com/ (CTRL + SHIFT + ALT + U)

// ==UserScript==
// @name        Windy
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      Flux Industries
// @license     MIT
// @description Windy everywhere for free https://usewindy.com/ (CTRL + SHIFT + ALT + U)
// ==/UserScript==

let activateButton = document.createElement('button');
activateButton.setAttribute('id', 'demoButton');
activateButton.setAttribute('style', 'position:fixed; margin-left:-50px; left:50%; width:100px; bottom:20px; border-radius:10x; background-color: #4ADE80; padding: 4px; border-color: white; border:0px; font-size: 20px; display: none;');
activateButton.innerHTML = "Activate Windy";
document.querySelector("body").appendChild(activateButton);

document.onkeyup = function (e) {
    if (e.ctrlKey && e.altKey && e.shiftKey && e.which == 85) {
        activateButton.style.display = "grid";
    }
};

let script = document.createElement('script');
script.setAttribute('type', 'text/javascript');
script.setAttribute('crossorigin', 'anonymous');
script.setAttribute('defer', '');
script.setAttribute('src', 'https://usewindy.com/js/main.js');
document.querySelector("head").appendChild(script);