Unfollowing & Unfriending program

weakopps
by weakopps · 20 posts
1 year ago in Help & Requests
Posted 1 year ago · Author
Is there a current program that allows you to mass unfriend or mass unfollow? If there isn’t do you think it can be made?

UPDATE: solution here
Posted 1 year ago
I don't think so no yet
Posted 1 year ago
@Tooly


I'm willing to pay if this available. My JS messed up
Posted 1 year ago
could probably do it with some basic JavaScript and tampermonkey.
Posted 1 year ago
@weakopps

@samyourbae


Steps to unfollowing everyone:
1) Goto your following page: https://www.imvu.com/next/friends/following/
2) Press F12 on keyboard
3) Paste code into the console

Code
const interval = setInterval(function() {
   $(".follow-button").children()[0].click();
   $(".dialog-footer").children()[1].click();
 }, 5000);

4) Press Enter

You will loose 1 following every 5 seconds.

Steps to unfriend everyone:
1) Goto your friends page: https://www.imvu.com/next/friends/
2) Press F12 on keyboard
3) Paste code into the console

Code
const interval1 = setInterval(function() {
   $(".friend-list-item").children()[0].click();
 }, 20000);
 
const interval2 = setInterval(function() {
 $(".action-more-container").children()[0].click();
 $(".context-menu").children()[2].click();
 $(".dialog-footer").children()[1].click();
 $(".dialog-footer").children()[0].click();
 $(".dialog-x").children()[0].click();
}, 8000);

4) Press Enter

You will loose 1 friend every 30 seconds ... run it while you sleep, all of your friends should be gone by morning.
Posted 1 year ago
@Don Von Alpha Dom


Thank You !! Appreciate it so much

-- Sun May 14, 2023 10:35 pm --

@Don Von Alpha Dom


Is it possible to use that for mass following ? it has same button

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT