您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add a button on CamGirlFinder that redirect on CamWhores.
当前为
// ==UserScript== // @name CamGirlFinder CamWhores search link // @namespace ViolentMonkey // @version 1.0 // @license MIT // @description Add a button on CamGirlFinder that redirect on CamWhores. // @author smartacephale // @match https://camgirlfinder.net/jobs/* // @resource https://camwhores.tv/favicon.ico // @icon https://www.google.com/s2/favicons?sz=64&domain=https://camgirlfinder.net/ // @grant none // ==/UserScript== (function () { 'use strict'; function addRedirectButton() { document.querySelectorAll('.result').forEach((e) => { const name = e.querySelector('.model-name').innerText.trim(); e.querySelector('p:last-child').innerHTML += ` | <a rel="nofollow" href="https://camwhores.tv/search/${name}/"><img class="platform-icon" title="CamWhores" src="https://camwhores.tv/favicon.ico"></a>`; }); } window.addEventListener('load', addRedirectButton); })(); r