您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide all posts that contains shoutouts or ads for other profiles
// ==UserScript== // @name Onlyfans - Hide Ads & shoutouts // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description Hide all posts that contains shoutouts or ads for other profiles // @author the-juju // @include https://*onlyfans.com/* // @include http://*onlyfans.com/* // @icon https://static.cdn.onlyfans.com/favicon-32x32.png?rev=202105071701-4c46682989 // @grant none // ==/UserScript== (function() { 'use strict'; var init = function() { console.log('hide !'); var adsRegex = /@/gm; var blocSelector = '.b-post__wrapper'; var contentSelector = '.b-post__text'; var blocs = document.querySelectorAll(blocSelector); for (var i = 0; i < blocs.length; i++) { var bloc = blocs[i]; var contentElement = bloc.querySelector(contentSelector); if (!contentElement || adsRegex.exec(contentElement.innerText) === null) { continue; } bloc.remove(); } } var interval = window.setInterval(function() { init() }, 5000); })();