You need to sign in or sign up before continuing.

AuntJudys Images & Videos

Access to full size content and download buttons

  1. // ==UserScript==
  2. // @name AuntJudys Images & Videos
  3. // @namespace https://greasyfork.org/en/users/1384264-atman
  4. // @version 2024-11-24
  5. // @description Access to full size content and download buttons
  6. // @author atman
  7. // @match *://*.auntjudys.com/tour/scenes/*highres.html
  8. // @match *://*.auntjudys.com/tour/scenes/*vids.html
  9. // @match *://*.auntjudysxxx.com/tour/scenes/*highres.html
  10. // @match *://*.auntjudysxxx.com/tour/scenes/*vids.html
  11. // @grant none
  12. // @license GPL-3.0
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. const galleryBlock = document.querySelector('.photo_gallery_block');
  19. const movieBlock = document.querySelector('.movie_wrapper');
  20. const photoHolders = document.querySelectorAll('.photo_gallery_thumbnail_wrapper img');
  21.  
  22. // Function to replace trailer with full video
  23. function updatePlayingVideo() {
  24. if (df_movie && df_movie.length > 0 && df_movie[0].path.includes("trailer")) {
  25. df_movie[0].path = df_movie[0].path.replace("trailer", "720p");
  26. load_default_movie();
  27. } else {
  28. // Retry after a short delay
  29. setTimeout(checkForTrailerpAvailability, 500);
  30. }
  31. }
  32.  
  33. const updateImageLinks = () => {
  34. if (photoHolders) {
  35. photoHolders.forEach(img => {
  36. const originalSrc = img.src;
  37. const fullImageUrl = originalSrc.replace('thumbs', 'fullwatermarked');
  38.  
  39. // Set the link
  40. const link = img.parentNode;
  41. link.href = fullImageUrl;
  42. link.target = '_blank';
  43. });
  44.  
  45. const match = photoHolders[1].src.match(/upload\/(\w+)\/(\w+)\/(\w+)(?=\/\/thumbs)/);
  46. const Letter = match[1];
  47. const model = match[2];
  48. const galleryNumber = match[3];
  49. const downloadUrl = `content/upload/${Letter}/${model}/${galleryNumber}/${galleryNumber}_full.zip`;
  50.  
  51. // Create a single download button
  52. if (downloadUrl) {
  53. const downloadButton = document.createElement('a');
  54. downloadButton.href = downloadUrl;
  55. downloadButton.textContent = 'Download ZIP';
  56. downloadButton.style.cssText = `
  57. display: block;
  58. margin-bottom: 10px;
  59. padding: 10px 10px;
  60. background: linear-gradient(90deg, #00d478, #297d58);
  61. color: #FFFFFF;
  62. text-decoration: none;
  63. border-radius: 5px;
  64. text-align: center;
  65. font-weight: bold;
  66. transition: background 0.5s linear;
  67. `;
  68.  
  69. galleryBlock.insertBefore(downloadButton, galleryBlock.firstChild);
  70. }
  71. }
  72. };
  73.  
  74. const updateVideo = () => {
  75. const playerOptions = document.querySelector('.player_options');
  76. if (playerOptions) {
  77. playerOptions.style.display = 'none';
  78. }
  79.  
  80. const formatSelectMenu = document.querySelector('.format_select_menu');
  81. if (formatSelectMenu) {
  82. formatSelectMenu.style.display = 'block';
  83.  
  84. const movieFormatSelect = document.getElementById('movieformat_select');
  85. const downloadSelect = document.getElementById('download_select');
  86.  
  87. const updateOptions = (selectElement, setPath = true) => {
  88. Array.from(selectElement.options).forEach(option => {
  89. option.removeAttribute('data-trial');
  90. const resolutionMatch = option.text.match(/(480p|720p|1080p)/);
  91. if (resolutionMatch) {
  92. const ident = df_movie[0].path;
  93. const extractedIdent = ident.split('trailer/')[1].split('.mp4')[0];
  94.  
  95. const resolution = resolutionMatch[0];
  96. option.value = resolution;
  97. const originalPath = movie[resolution][extractedIdent].vtt_file;
  98. const path = originalPath.replace(/\.vtt$/, '').replace(/\/vtt\//, '/');
  99. movie[resolution][extractedIdent].path = path;
  100. option.value = setPath ? path : resolution+":"+extractedIdent;
  101. }
  102. });
  103. };
  104.  
  105. const filterOptions = (selectElement) => {
  106. Array.from(selectElement.options).forEach(option => {
  107. if (option.text.includes('HLS')) {
  108. option.remove();
  109. }
  110. });
  111. };
  112.  
  113. if (downloadSelect) {
  114. updateOptions(movieFormatSelect, false);
  115. updateOptions(downloadSelect, true);
  116. filterOptions(movieFormatSelect);
  117. filterOptions(downloadSelect);
  118. }
  119. }
  120. }
  121.  
  122. const main = () => {
  123. if (galleryBlock) {
  124. updateImageLinks();
  125. }
  126. if (movieBlock) {
  127. updateVideo();
  128. updatePlayingVideo();
  129. }
  130. };
  131.  
  132. main();
  133. })();