Soundgasm Downloader

Add a download link to Soundgasm.net links

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Soundgasm Downloader
// @namespace    https://github.com/RobertSagit/soundgasm-downloader
// @version      1.1
// @description  Add a download link to Soundgasm.net links
// @author       RobertSagit
// @match        http*://soundgasm.net/u/*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    function gendownload() {
        var audioplayer = document.getElementById("jp_audio_0");
        var description = document.getElementsByClassName("jp-description")[0];
        var title = document.getElementsByClassName("jp-title")[0].innerHTML.replace(/[^a-z0-9]/gi, '');

        // Debug code
        //console.log(`Audio source: ${audioplayer.src}`);

        description.innerHTML += `<br /><a href="${audioplayer.src}" download="${title}">Download File</a>`;
    }

    setTimeout(gendownload, 100);
})();