🏠 Home 

WorldCosplay Download

Download the linked image on WorldCosplay photo pages


Install this script?
  1. // ==UserScript==
  2. // @name WorldCosplay Download
  3. // @author Arnold François Lecherche
  4. // @namespace https://greasyfork.org
  5. // @icon http://worldcosplay.net/favicon.ico
  6. // @version 0.1
  7. // @description Download the linked image on WorldCosplay photo pages
  8. // @include http://worldcosplay.net/photo/*
  9. // @include http://*.worldcosplay.net/photo/*
  10. // @include https://worldcosplay.net/photo/*
  11. // @include https://*.worldcosplay.net/photo/*
  12. // @grant none
  13. // @run-at document-end
  14. // ==/UserScript==
  15. setTimeout(function imgdl() {
  16. 'use strict';
  17. var clks = document.getElementsByClassName('clickable'), sgn = document.getElementById('headerShader'), imgs = [], i, clk, isrc;
  18. for (i = clks.length; i--;) {
  19. clk = clks[i];
  20. if (clk.nodeName.toLowerCase() === 'img') {
  21. isrc = clk.src;
  22. if (/\.(?:jpe?g|png|gif)$/.test(isrc)) imgs.push(isrc);
  23. }
  24. }
  25. if (imgs.length) sgn.innerHTML += '<ul><li><a href="' + imgs.join('">Download</a></li><li><a href="') + '">Download</a></li></ul>';
  26. else setTimeout(imgdl, 16);
  27. }, 16);