kp4jd2

Generate a list of links for JD2 from kemono posts.

Version vom 28.03.2022. Aktuellste Version

  1. // ==UserScript==
  2. // @name kp4jd2
  3. // @namespace https://sleazyfork.org/en/scripts/441628-kp4jd2
  4. // @version 0.30
  5. // @description Generate a list of links for JD2 from kemono posts.
  6. // @author You
  7. // @match https://kemono.party/*/user/*/post/*
  8. // @icon https://www.google.com/s2/favicons?domain=kemono.party
  9. // @grant none
  10. // @require http://code.jquery.com/jquery-latest.min.js
  11. // @license MIT
  12. // ==/UserScript==
  13. var $ = window.jQuery;
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. $(document).ready(function () {
  19. $(".post__header").after("<div class='kpdlh'></div>");
  20. $(".kpdlh").append(`<button class="kpdl">Generate List for JD2</button>`).css("padding","0.5rem");
  21. $(".kpdl").click(function() {genList();});
  22.  
  23. function genList() {
  24. let srcList = "";
  25. let idx = 0;
  26. let imgcount = $(".post__files .post__thumbnail a.image-link").length;
  27.  
  28. $(".post__files .post__thumbnail a.image-link").each(function() {
  29. let tmtl = $(this).attr("href");
  30. let tmfi = tmtl.lastIndexOf("?f=");
  31. let tmei = tmtl.lastIndexOf(".") + 1;
  32. let tmnf = tmtl.slice(tmfi);
  33. let tmex = tmtl.substr(tmei);
  34. tmtl = tmtl.slice(0,tmfi);
  35.  
  36. let kpid = window.location.pathname;
  37. kpid = kpid.substr(kpid.lastIndexOf("/")+1);
  38. let lidx = idx.toString().padStart(Math.max(2,imgcount.toString().length),'0');
  39.  
  40. //jd2 for some reason dislikes .jpe files
  41. if (tmex == "jpe") tmex = "jpeg";
  42.  
  43. let url = "https://kemono.party"+tmtl+"?f="+kpid+"_"+lidx+"."+tmex;
  44. srcList += url + "\n";
  45. idx += 1;
  46. });
  47.  
  48. $(".post__attachment a.post__attachment-link").each(function() {
  49. let tmtl = $(this).attr("href");
  50. let url = "https://kemono.party"+tmtl;
  51. srcList += url + "\n";
  52. });
  53.  
  54. srcList += $.trim($(".post__title").text());
  55. navigator.clipboard.writeText(srcList);
  56.  
  57. $(".kpdlh").append(`<span class="kpdlfb">List copied to Clipboard.</span>`);
  58. $(".kpdlfb").css("margin-left","0.5rem");
  59. setTimeout(function() {
  60. $(".kpdlfb").fadeOut(500, function() {
  61. $(".kpdlfb").remove()});
  62. }, 2000);
  63. }
  64. });
  65. })();