I am in 149 groups and I want to leave half of them, but it takes forever.

So I am asking if there is any other way to faster it up?

Thanks for help:)

9 years ago*

Comment has been collapsed.

Maybe if you'd keep focused at your task instead of creating threads on forums about how to do it faster, you'd do it faster.

9 years ago
Permalink

Comment has been collapsed.

that's mean but correct at the same time so:

+1

9 years ago
Permalink

Comment has been collapsed.

Approved!

9 years ago
Permalink

Comment has been collapsed.

+1

9 years ago
Permalink

Comment has been collapsed.

mouse recorder? :P

9 years ago
Permalink

Comment has been collapsed.

I removed ~750 wishlist items manually, 3 times (because it didn't work and reset itself -.-) just yesterday.

(the enhanced steam (current version) function to empty the wishlist didn't work either)

It was worth it though, as the lag (browser freezing for 1-2 seconds) when opening my steam profile is now gone :)

9 years ago
Permalink

Comment has been collapsed.

Here you go.

  1. Copy the code.
  2. Go to your id/groups page & Right Click -> Inspect Element.
  3. Click on console in Chrome ( don't remember firefox ).
  4. Paste
  5. Hit Enter.
    -- You will receive a confirmation whether you want to leave each group or not.

-- DO NOTE THAT THIS CODE WAS NOT TESTED ---
---- CODE -----

// Click on Leave Group
function triggerMouseEvent(node, eventType) {
var clickEvent = document.createEvent('MouseEvents');
clickEvent.initEvent(eventType, true, true);
node.dispatchEvent(clickEvent);
}

// Loop through the array searching for the leave group link
var arrayLength = $J('.linkStandard').length ;

for (var i = 0; i < arrayLength; i++) {
if( $J('.linkStandard')[i].href.indexOf( "leaveGroupPrompt" ) > 0 ) {
triggerMouseEvent( $J('.linkStandard')[i], 'click');
}
};

9 years ago
Permalink

Comment has been collapsed.

thank you it worked! <3

EDIT: Nope it didnt...

9 years ago
Permalink

Comment has been collapsed.

That's Odd, I just tested it and it worked perfectly fine.
You had to add a ';' at the end, which is what I missed.

9 years ago
Permalink

Comment has been collapsed.

Still doesn't work, I put code, I check remember for all tries and press OK.

Page refreshes and it leaves only from 1 group :(

Sry for bad English:$

9 years ago
Permalink

Comment has been collapsed.

That's the problem.

That is not "Remember all tries", it's "Do not let this page make additional pop ups".
In other words, it disables the script.

For the script to work, you need to click on the "OK" button everytime. Hitting enter DOESN'T work.

9 years ago
Permalink

Comment has been collapsed.

Look, I spammed button OK now and i get again the same problem, it leaves only from 1 group:/

I'll add you on Steam so you can tell me more, maybe i'm doing something wrong

EDIT: It worked with firefox, thank you! <3

9 years ago
Permalink

Comment has been collapsed.

Closed 9 years ago by agent0022.