WorldCosplay Download

Download the linked image on WorldCosplay photo pages

  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.  
  16. setTimeout(function imgdl() {
  17. 'use strict';
  18. var clks = document.getElementsByClassName('clickable'), sgn = document.getElementById('headerShader'), imgs = [], i, clk, isrc;
  19. for (i = clks.length; i--;) {
  20. clk = clks[i];
  21. if (clk.nodeName.toLowerCase() === 'img') {
  22. isrc = clk.src;
  23. if (/\.(?:jpe?g|png|gif)$/.test(isrc)) imgs.push(isrc);
  24. }
  25. }
  26. if (imgs.length) sgn.innerHTML += '<ul><li><a href="' + imgs.join('">Download</a></li><li><a href="') + '">Download</a></li></ul>';
  27. else setTimeout(imgdl, 16);
  28. }, 16);