Download Button for GreasyFork scripts

Adds a button to download the script

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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         Download Button for GreasyFork scripts
// @version      1.2
// @author       Rust1667
// @description  Adds a button to download the script
// @match        https://greasyfork.org/*/scripts/*
// @match        https://sleazyfork.org/*/scripts/*
// @grant        none
// @icon         https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @namespace https://greasyfork.org/users/980489
// ==/UserScript==

(function() {
    'use strict';

    // Find the install link element
    var installLink = document.querySelector('#install-area .install-link');

    // Determine the file name
    const installURLlink = installLink.getAttribute('href');

    function getFilenameFromUrl() {
        const url = installURLlink;
        var lastSlashIndex = url.lastIndexOf('/');
        var filenameWithExtension = url.substring(lastSlashIndex + 1);
        var decodedFilename = filenameWithExtension.replace(/%20/g, '_');
        return decodedFilename;
    }

    // Create a download button
    var downloadButton = document.createElement('button');
    downloadButton.textContent = 'Download Script';
    downloadButton.style.marginLeft = '10px';

    // Add click event listener to the download button
    downloadButton.addEventListener('click', function() {
        var scriptUrl = installLink.getAttribute('href');
        downloadFile(scriptUrl);
    });

    // Insert the download button after the install link
    installLink.parentNode.insertBefore(downloadButton, installLink.nextSibling);

    function downloadFile(url) {
        var xhr = new XMLHttpRequest();
        xhr.open('GET', url, true);
        xhr.responseType = 'blob';
        xhr.onload = function() {
            if (xhr.status === 200) {
                var blob = xhr.response;
                var url = window.URL.createObjectURL(blob);
                var a = document.createElement('a');
                a.href = url;
                a.download = getFilenameFromUrl();
                document.body.appendChild(a);
                a.click();
                window.URL.revokeObjectURL(url);
            }
        };
        xhr.send();
    }
})();