Sleazy Fork is available in English.

The Nude - Show directly thumbnails of Actress in "Appears with:"

Show directly thumbnails of Actress in "Appears with:" section. With the help of indefined (thanks)

  1. // ==UserScript==
  2. // @name The Nude - Show directly thumbnails of Actress in "Appears with:"
  3. // @description Show directly thumbnails of Actress in "Appears with:" section. With the help of indefined (thanks)
  4. // @author janvier57
  5. // @namespace https://greasyfork.org/users/7434
  6. // @include https://www.thenude.com/*
  7. // @match https://www.thenude.com/*
  8. // @version 2
  9. // @license unlicense
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13.  
  14. // GOOD 1
  15. //.bio-list>li> a[data-img^="https://static.thenude.com/models/"]
  16.  
  17. $( ".bio-list>li> a[data-img^='https://static.thenude.com/models/']" ).each(function() {
  18. var attr = $(this).attr('data-img');
  19. if (typeof attr !== typeof undefined && attr !== false) {
  20. // 'url('+attr+')' should be "url("+attr+")"
  21. $(this).css('background-image' , 'url("'+attr+'")' );
  22. }
  23. })
  24.  
  25. // add CSS
  26. $('head').append(`
  27. <style type='text/css'>
  28. ul.bio-list {
  29. display: inline-block !important;
  30. text-align: left !important;
  31. }
  32. ul.bio-list li {
  33. text-align: left !important;
  34. }
  35.  
  36. ul.bio-list .list-quest {
  37. display: inline-block;
  38. width: 100% !important;
  39. text-align: left !important;
  40. font-size: 15px !important;
  41. background: #111;
  42. }
  43. ul.bio-list >li> a[data-img^='https://static.thenude.com/models/'] {
  44. display: inline-block !important;
  45. vertical-align: bottom !important;
  46. background-size : contain !important;
  47. background-repeat : no-repeat !important;
  48. background-position: center 25px !important;
  49. line-height: 15px !important;
  50. height: 100% !important;
  51. min-height : 195px !important;
  52. max-height : 195px !important;
  53. width : 100% !important;
  54. min-width : 150px !important;
  55. max-width : 150px !important;
  56. margin: 0 -45px 5px 0 !important;
  57. padding: 5px 0 0px 0 !important;
  58. text-align: center !important;
  59. font-size: 15px !important;
  60. overflow: hidden !important;
  61. background-color: black !important;
  62. border: 1px solid red !important;
  63. }
  64.  
  65. </style>
  66. `)
  67. console.log('TheNude: CSS added')