CamGirlFinder PervertMonkey

Adds model links for CamWhores, webcamrecordings, recu.me, camvideos, privat-zapisi

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         CamGirlFinder PervertMonkey
// @namespace    pervertmonkey
// @version      1.6.0
// @author       violent-orangutan
// @description  Adds model links for CamWhores, webcamrecordings, recu.me, camvideos, privat-zapisi
// @license      MIT
// @icon         https://www.google.com/s2/favicons?sz=64&domain=camgirlfinder.net
// @homepage     https://github.com/smartacephale/sleazy-fork
// @homepageURL  https://github.com/smartacephale/sleazy-fork
// @source       github:smartacephale/sleazy-fork
// @supportURL   https://github.com/smartacephale/sleazy-fork/issues
// @match        https://camgirlfinder.net/*
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/core/pervertmonkey.core.umd.js
// @require      data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function () {
  'use strict';

  const websites = [
    { name: "camwhores.tv", url: (u) => `https://camwhores.tv/search/${u}/` },
    {
      name: "webcamrecordings.com",
      url: (u) => `https://www.webcamrecordings.com/modelSearch/${u}/page/1/`
    },
    { name: "camvideos.me", url: (u) => `https://camvideos.me/search/${u}` },
    { name: "recu.me", url: (u) => `https://recu.me/performer/${u}` },
    {
      name: "privat-zapisi.info",
      url: (u) => `https://www.privat-zapisi.info/search/${u}/`
    }
  ];
  function createLinks(name) {
    return websites.map(
      (w) => `
      <a rel="nofollow" href="${w.url(name)}">
      <img class="platform-icon" title="${w.name}" src="https://www.google.com/s2/favicons?sz=64&domain=${w.name}"></a>`
    ).join(" ");
  }
  function addRedirectButton() {
    if (!document.body.querySelector(".model-name")?.innerText.trim()) return;
    document.querySelectorAll(".result:not(.fucked)").forEach((e) => {
      const name = e.querySelector(".model-name")?.innerText.trim();
      if (name?.length === 0) return;
      e.querySelector("p:last-child").innerHTML += createLinks(name);
      e.classList.add("fucked");
    });
  }
  let timeout;
  const observer = new MutationObserver((mutations) => {
    mutations.forEach(() => {
      clearTimeout(timeout);
      timeout = setTimeout(addRedirectButton, 300);
    });
  });
  observer.observe(document.body, {
    attributes: true,
    childList: true,
    subtree: true
  });
  addRedirectButton();

})();