Sleazy Fork is available in English.

JAV Library Sukebei Link

A a link to search on Sukebei from a JAV Library video.

  1. // ==UserScript==
  2. // @name JAV Library Sukebei Link
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description A a link to search on Sukebei from a JAV Library video.
  6. // @author ReaperUnreal
  7. // @match https://*.javlibrary.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=javlibrary.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. const movieId = document.title.split(' ')[0];
  17. if (movieId.match(/\w{2,7}-\d{2,5}/).length < 1) {
  18. console.warn(`Movie '${movieId}' is not in appropriate format.`);
  19. return;
  20. }
  21.  
  22. const searchUrl = `https://sukebei.nyaa.si/?f=0&c=0_0&q=${movieId.toLocaleLowerCase()}`;
  23.  
  24. const videoInfoSection = document.getElementById('video_info');
  25.  
  26. const linkSection = document.createElement('div');
  27. videoInfoSection.appendChild(linkSection);
  28.  
  29. const link = document.createElement('a');
  30. linkSection.appendChild(link);
  31.  
  32. link.href = searchUrl;
  33. link.innerText = 'Sukebei Link';
  34. link.style.paddingLeft = '2em';
  35. link.style.paddingTop = '1em';
  36. })();