您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically hide models who are in private or ticket shows across all Stripchat pages, not just Indian section. Clean browsing experience focused on public/free models only!
// ==UserScript== // @name Stripchat - Hide Private Models (All Pages) // @namespace https://greasyfork.org/users/1463345-james007 // @version 1.1 // @description Automatically hide models who are in private or ticket shows across all Stripchat pages, not just Indian section. Clean browsing experience focused on public/free models only! // @author YourName // @license MIT // @match https://stripchat.com/* // @icon https://stripchat.com/favicon.ico // @grant none // @run-at document-end // @homepageURL https://greasyfork.org/scripts/your-script-id // @supportURL https://greasyfork.org/scripts/your-script-id/feedback // ==/UserScript== (function() { 'use strict'; /** * Hide models that are currently in private/ticket shows. * Looks for elements with class containing "ModelThumbPrivateCover" inside model-list-item blocks. */ function hidePrivateModels() { const modelItems = document.querySelectorAll('.model-list-item'); modelItems.forEach(item => { if (item.querySelector('div[class*="ModelThumbPrivateCover"]')) { item.style.display = 'none'; } }); } // Run once after the page loads document.addEventListener('DOMContentLoaded', hidePrivateModels); // Keep running whenever new models are dynamically loaded (infinite scroll, filtering, etc.) const observer = new MutationObserver(hidePrivateModels); observer.observe(document.body, { childList: true, subtree: true }); })();