您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址