Auto Download Link

Provide a download link for iOS devices

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Auto Download Link
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Provide a download link for iOS devices
// @match        https://api.khoindvn.eu.org/5rJ24F
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create a download link
    var downloadLink = document.createElement('a');
    downloadLink.href = 'https://api.khoindvn.eu.org/5rJ24F';
    downloadLink.download = 'file_name'; // Optional: specify a default file name
    downloadLink.textContent = 'Download File';
    downloadLink.style.position = 'fixed';
    downloadLink.style.bottom = '20px';
    downloadLink.style.right = '20px';
    downloadLink.style.padding = '10px';
    downloadLink.style.backgroundColor = '#007bff';
    downloadLink.style.color = '#fff';
    downloadLink.style.textDecoration = 'none';
    downloadLink.style.borderRadius = '5px';
    downloadLink.style.zIndex = '1000';

    // Append link to the body
    document.body.appendChild(downloadLink);
})();