DOWNLOADER UQLOAD

14/01/2025 19:10:50

目前为 2025-01-15 提交的版本。查看 最新版本

// ==UserScript==
// @name        DOWNLOADER UQLOAD
// @namespace   Violentmonkey Scripts
// @match       https://uqload.*/*
// @grant       none
// @version     1.0
// @author      a.blasters
// @description 14/01/2025 19:10:50
// @license MIT
// ==/UserScript==

// Création du bouton
var button = document.createElement("button");
button.innerHTML = "DOWNLOAD";
button.style.position = "fixed";
button.style.bottom = "50px";
button.style.right = "50px";
button.style.zIndex = "1000";
button.style.backgroundColor = "blue";
button.style.color = "white";

// Ajout de l'événement de clic pour rediriger
button.onclick = function() {
    window.location.href = "https://9xbud.com/" + location.href;
};

// Ajout du bouton au corps du document
document.body.appendChild(button);