CamGirlFinder PervertMonkey

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

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

作者のサイトでサポートを受ける。または、このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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();
})();