您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds CamWhores/webcamrecordings links
// ==UserScript== // @name CamGirlFinder helpful model links // @namespace ViolentMonkey // @version 1.4 // @license MIT // @description Adds CamWhores/webcamrecordings links // @author smartacephale // @match https://camgirlfinder.net/* // @resource https://camwhores.tv/favicon.ico // @icon https://www.google.com/s2/favicons?sz=64&domain=https://camgirlfinder.net/ // @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() { const name = document.body.querySelector('.model-name').innerText.trim(); if (!name) return; document.querySelectorAll('.result').forEach((e) => { const name = e.querySelector('.model-name').innerText.trim(); e.querySelector('p:last-child').innerHTML += createLinks(name); }); observer.disconnect(); } let timeout; const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { clearTimeout(timeout); timeout = setTimeout(addRedirectButton, 300); }); }); observer.observe(document.body, { attributes: false, childList: true, subtree: true, }); addRedirectButton(); })();