CamGirlFinder PervertMonkey

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         CamGirlFinder PervertMonkey
// @namespace    pervertmonkey
// @version      1.6.19
// @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#readme
// @homepageURL  https://sleazyfork.org/en/users/1253342-smartacephale
// @source       https://github.com/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
// @grant        none
// @run-at       document-idle
// ==/UserScript==

var ___core = window.pervertmonkey.core || pervertmonkey.core;
var ___utils = ___core;


(function() {
	"use strict";
	var 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");
		});
	}
	var timeout;
	new MutationObserver((mutations) => {
		mutations.forEach(() => {
			clearTimeout(timeout);
			timeout = setTimeout(addRedirectButton, 300);
		});
	}).observe(document.body, {
		attributes: true,
		childList: true,
		subtree: true
	});
	addRedirectButton();
})();