(MSIN+) db.msin.jp improved

Check the Porn code to MISSAV and Sukebei if it exist.

Verze ze dne 04. 01. 2023. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        (MSIN+) db.msin.jp improved
// @description Check the Porn code to MISSAV and Sukebei if it exist.
// @namespace   https://github.com/DayatXD
// @author      KememChan
// @match       https://db.msin.jp/*
// @require     http://code.jquery.com/jquery-3.1.0.slim.min.js
// @grant       GM_xmlhttpRequest
// @run-at      document-end
// @version     1.0.1
// ==/UserScript==

// Remove fucking Title
$(".movie_title").remove()

$("span.movie_fileName").remove();
$('body').after(`<script>function copyToClipboard(element) {var $temp = $("<input>");$("body").append($temp);$temp.val($(element).text()).select();document.execCommand("copy");$temp.remove();}</script>`);
$('head').append('<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">')
var x = 0;
var row = $("div.movie_info");

let birth = $("span.mv_barth")
if (birth.length) { var birthYear = birth.text().split("-")[0] }

var codeArray = []

$(row).each(function() {
// TO DO REFACTOR THIS TO NOT USE EACH FUNC
  if (birthYear != null) {
    let videoCreated = $(this).find("div.movie_create")
    let videoCreatedYear = videoCreated.text().split("-")[0]
    let sumHerAge = videoCreatedYear - birthYear
    videoCreated.children("a").append(`(${sumHerAge} Years Old)`)
  }

  let kurung = $(this).find('span.movie_pn').parent().parent()
  if (kurung.length) {
    kurung.html(kurung.html().replace(/[\(\)]+/g, ''))
  }
  var code = $(this).find(".movie_pn");
  code.html(code.html().replace("_", "-"));
  code.html(code.html().toUpperCase())
  var code = $(this).find(".movie_pn");
  // let match = /^(carib|caribpr|1pon|paco|FC2-PPV)+-(\d.+)/gi;
  let match = /^(carib|caribpr|1pon|paco)+-(\d.+)/gi;
  let hasil = match.exec(code.html())
  match.test(code.html()) // if i didnt add this the fucking if test will not working bruh...
  var codeUrl
  if (match.test(code.html())) {
    codeUrl = hasil[2]
    codeArray.push(hasil[2])
  } else {
    codeUrl = code.html()
    codeArray.push(code.html())
  }


  code.replaceWith('<a class="movie_pn">' + code.html() + '</a>')
  code = $(this).find(".movie_pn");
  code.attr(`id`, `${x}`).attr
  code.after(`<a class="fa-regular fa-copy" onclick="copyToClipboard('#${x}')" style="margin-left: 5px;"></a>`)
  var sukebei = `https://sukebei.nyaa.si/?q=${codeUrl}&s=seeders&o=desc`
  var missav = `https://missav.com/en/search/${codeUrl}`
  $(this).find(".loading").before(`<a href='https://img.javstore.net/search/images/?q="${codeUrl}"' target="_blank"><img src="https://img.javstore.net/content/images/system/default/favicon.png" width='17' height='17'></img></a>`)

  GM_xmlhttpRequest({
    method: "GET",
    url: missav,
    onload: (response) => {
      let grid = $(response.responseText).find('div.grid div.relative');
      if (grid.length) {
        code.attr(`href`, missav).attr(`target`, "_blank");
        code.css("color", "#fe628e").css("font-size", "large").css("font-weight", "600").html(code.html().toUpperCase());
        $(this).find("div.movie_image").removeClass("unsubscribe_image")
      } else {
        $(this).find("div.movie_image").addClass("unsubscribe_image")
      }
    }
  });
  x++
});


function getSukebei(codeArray) {
  let codes = "";
  for (const code of codeArray) {
    codes += `"${code}"` + "|";
  }
  codes = codes.slice(0, -1);
  let sukebeis = `https://sukebei.nyaa.si/?q=${codes}&s=seeders&o=desc`;
  console.log(sukebeis);

  GM_xmlhttpRequest({
    method: "GET",
    url: sukebeis,
    onload: (response) => {
      codeArray.forEach((code) => {
        const contain = $(`.movie_pn:contains('${code}')`).parent();
        const loading = contain.find(".loading");
        const movie_img = contain.parent().find("div.movie_image");
        const containCode = $(response.responseText).find(
          `td:contains("${code}")`
        );
        if (containCode.length) {
          let torrent =
            "https://sukebei.nyaa.si/" +
            containCode
              .first()
              .parent()
              .find("i.fa-download")
              .parent()
              .attr("href");
          let magnet = containCode
            .first()
            .parent()
            .find("i.fa-magnet")
            .parent()
            .attr("href");
          let seedsNumber = containCode
            .first()
            .parent()
            .children()
            .eq(-3)
            .text();

          loading.after(`
          <a href='https://sukebei.nyaa.si/?q=${code}&s=seeders&o=desc' target='_blank'>
            <img src='https://sukebei.nyaa.si/static/favicon.png' width='17' height='17'></img>
          </a>
          <a class="fa fa-fw fa-download" href='${torrent}'></a>
          <a class="fa fa-fw fa-magnet" href='${magnet}'></a>
          <a style='color: lawngreen; font-size: large; font-weight: 600;' >${seedsNumber}</a>
        `);
          movie_img.removeClass("unsubscribe_image");
          // let contain = $(`.movie_pn:contains('${code}')`).parent().find(".loading").html()
          // console.log(contain)

          console.log(code + " Found :)");
        } else {
          console.log(code + " Not Found :(");
        }
        loading.remove();
      });
    },
  });
}

$(".movie_pn").after(`<div class='sukebei'><a class='loading'>Sukebei Loading...</a></div>`)
getSukebei(codeArray)