1/3
1 Month of Service
i have created a script for f95 / lewdcorner / azkoselscorner what allowed you that you can ignore members.... its possible to extend this for threads and anything
i was tired to ignore the same members on multiple xenforo forums, therefore i created this
please dont use that for f95 / lewdcorner / ATF / AC / ULMF staff members or moderators...
the maybe can ban you for that
atm it supports only ignore members function, but its also possible to ignore entire threads with different tags and everything
you need tampermonkey addon
add this script to tampermonkey userscripts
the nice thing is you can turn on/off this script with the tampermonkey addon
on this way you can ignore 9000 members and with a one click, you can read everything cool or?
with that script you can ignore the same members in multiple forums
i have tested it, you can also use that script on other XenForo Forums, you must only add a // @match line
you must only change the
var ignoreMembers line so
for example
var ignoreMembers = ["user1", "user2"];
the username is exact the same like in the forum
for example
var ignoreMembers = ["xXxLunaxXx"];
i was tired to ignore the same members on multiple xenforo forums, therefore i created this
please dont use that for f95 / lewdcorner / ATF / AC / ULMF staff members or moderators...
the maybe can ban you for that
atm it supports only ignore members function, but its also possible to ignore entire threads with different tags and everything
you need tampermonkey addon
You must be registered to see links
add this script to tampermonkey userscripts
Code:
// ==UserScript==
// @name Lewdcorner/Azkosels Corner/F95zone/ULMF Ignore Members
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://lewdcorner.com/threads/*
// @match https://azkoselscorner.com/index.php?threads/*
// @match https://f95zone.to/threads/*
// @match https://ulmf.org/threads/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @run-at document-end
// @require https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==
var ignoreMembers = ["User"];
function ignoreFunction() {
var elements = document.querySelectorAll("article.message.message--post.js-post");
elements.forEach((userItem) => {
var author = $(userItem).data("author");
if (ignoreMembers.includes(author)) {
$(userItem).remove();
}
});
}
$(document).ready(ignoreFunction);
window.addEventListener("load", ignoreFunction);
the nice thing is you can turn on/off this script with the tampermonkey addon
on this way you can ignore 9000 members and with a one click, you can read everything cool or?
with that script you can ignore the same members in multiple forums
i have tested it, you can also use that script on other XenForo Forums, you must only add a // @match line
you must only change the
var ignoreMembers line so
for example
var ignoreMembers = ["user1", "user2"];
the username is exact the same like in the forum
for example
var ignoreMembers = ["xXxLunaxXx"];
Code:
// ==UserScript==
// @name Lewdcorner/Azkosels Corner/F95zone/ULMF Ignore Members
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://lewdcorner.com/threads/*
// @match https://azkoselscorner.com/index.php?threads/*
// @match https://f95zone.to/threads/*
// @match https://ulmf.org/threads/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @run-at document-end
// @require https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==
var ignoreMembers = ["User"];
function ignoreFunction() {
var elements = document.querySelectorAll("article.message.message--post.js-post");
elements.forEach((userItem) => {
var author = $(userItem).data("author");
if (ignoreMembers.includes(author)) {
$(userItem).remove();
}
});
}
$(document).ready(ignoreFunction);
window.addEventListener("load", ignoreFunction);
Last edited: