Greasy Fork is available in English.

SampleFocus Downloader Hack

Download samples from SampleFocus without needing a subscription.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         SampleFocus Downloader Hack
// @namespace    http://tampermonkey.net/
// @version      v1.0.0
// @description  Download samples from SampleFocus without needing a subscription.
// @author       You
// @match        https://samplefocus.com/samples/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=samplefocus.com
// @grant        none
// @license      MIT
// ==/UserScript==

// This script lets you download the audio file from the preview so you don't need any credits.
// The main downside to this is that the result is an MP3 file rather than a WAV file.

const downloadForFree = async () => {
    const elem = document.createElement('a');

    const sampleUrl = JSON.parse(document.querySelector('[data-component-name="SampleHero"]').innerText).sample.sample_mp3_url;
    const resp = await fetch(sampleUrl);
    const blob = await resp.blob();

    elem.href = URL.createObjectURL(blob);

    elem.download = sampleUrl.split('/')[8].split('?')[0]; // download file name
    elem.click();
};

const freeDownloadBtn = document.createElement('button');
freeDownloadBtn.innerText = 'CLICK TO GET MP3 WITH NO CREDITS';
freeDownloadBtn.style = 'color: white; background-color: black; border: 1px solid white; border-radius: 50px; font-size: 15px; padding: 10px; cursor: pointer';
freeDownloadBtn.addEventListener('click', downloadForFree);
document.getElementsByClassName('MuiGrid-root MuiGrid-container MuiGrid-spacing-xs-2 css-1eikg3m')[0].append(freeDownloadBtn);