(MSIN+) db.msin.jp improved

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

اعتبارا من 04-01-2023. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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)