Auto Download Link

Provide a download link for iOS devices

  1. // ==UserScript==
  2. // @name Auto Download Link
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Provide a download link for iOS devices
  6. // @match https://api.khoindvn.eu.org/5rJ24F
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. // Create a download link
  14. var downloadLink = document.createElement('a');
  15. downloadLink.href = 'https://api.khoindvn.eu.org/5rJ24F';
  16. downloadLink.download = 'file_name'; // Optional: specify a default file name
  17. downloadLink.textContent = 'Download File';
  18. downloadLink.style.position = 'fixed';
  19. downloadLink.style.bottom = '20px';
  20. downloadLink.style.right = '20px';
  21. downloadLink.style.padding = '10px';
  22. downloadLink.style.backgroundColor = '#007bff';
  23. downloadLink.style.color = '#fff';
  24. downloadLink.style.textDecoration = 'none';
  25. downloadLink.style.borderRadius = '5px';
  26. downloadLink.style.zIndex = '1000';
  27.  
  28. // Append link to the body
  29. document.body.appendChild(downloadLink);
  30. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址