// ==UserScript== // @name Soundcloud Album Art Downloader // @namespace http://www.dieterholvoet.com // @version 1.1 // @description Allows you to download album art on the Soundcloud website. // @author Dieter Holvoet // @require https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js // @include http://www.soundcloud.com/* // @include http://soundcloud.com/* // @include https://www.soundcloud.com/* // @include https://soundcloud.com/* // @grant none // @downloadURL none // ==/UserScript== setInterval(function() { $('.modal__content:not(.appeared)') .addClass('appeared') .each(function() { var imageURL = $(".modal__content .image__full").css('background-image'); imageURL = imageURL.substring(4, imageURL.length - 1); $(".modal__content .image__full").parent().remove(); $(".modal__content").append(""); $(".modal__content").append("Open in new tab"); $(".modal__content").append("Download"); }); }, 250);