NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name KucingSemprul Worldcosplay Downloader // @namespace '' // @description Downloader for Wordcosplay // @match https://worldcosplay.net/member/*/photos* // @match https://worldcosplay.net/member/*/characters/* // @match https://worldcosplay.net/member/*/cosplayer/* // @require https://code.jquery.com/jquery-3.3.1.js // @include https://worldcosplay.net/* // @updateURL https://openuserjs.org/meta/kucingsemprul/KucingSemprul_Worldcosplay_Downloader.meta.js // @license MIT // @version 1.3 // ==/UserScript== try { $(window).on('load', function () { // alert('just click on the photo you want to download!'); var uri = ''; var uris = []; var fsegment = ''; var lsegment = ''; var imgTh = $('span.photo_img'); for (var i = 0; i < imgTh.length; i++) { uri = $(imgTh[i]).css('background-image'); uri = uri.replace('url(', '').replace(')', '').replace(/\"/gi, ""); uri = uri.replace('350x600', '3000'); uris.push(uri); } var wrapper = $('div.preview.ng-scope').find('a'); for (var j = 0; j < uris.length; j++) { wrapper[j].setAttribute("href", uris[j]); wrapper[j].setAttribute("ng.href", uris[j]); wrapper[j].setAttribute("target", '_blank'); } }); } catch (err) { alert(err.toString()); }