Download Button for GreasyFork scripts

Adds a button to download the script

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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();
    }
})();