DOWNLOADER UQLOAD

14/01/2025 19:10:50

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

  1. // ==UserScript==
  2. // @name DOWNLOADER UQLOAD
  3. // @namespace Violentmonkey Scripts
  4. // @match https://uqload.*/*
  5. // @grant none
  6. // @version 1.0
  7. // @author a.blasters
  8. // @description 14/01/2025 19:10:50
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. // Création du bouton
  13. var button = document.createElement("button");
  14. button.innerHTML = "DOWNLOAD";
  15. button.style.position = "fixed";
  16. button.style.bottom = "50px";
  17. button.style.right = "50px";
  18. button.style.zIndex = "1000";
  19. button.style.backgroundColor = "blue";
  20. button.style.color = "white";
  21.  
  22. // Ajout de l'événement de clic pour rediriger
  23. button.onclick = function() {
  24. window.location.href = "https://9xbud.com/" + location.href;
  25. };
  26.  
  27. // Ajout du bouton au corps du document
  28. document.body.appendChild(button);