Topic: Mass Add Posts to Set

Posted under General

Is there a way to grab multiple posts and add them all into a set with one button? Or at least a way to grab all their Post IDs to be added through the "edit posts" button

in the mode section under the search bar, select "add to set" :3

ohhh you mean 1 button for all...hmmm i think so but not sure

You can use the JS console on the desktop browser to auto-click all the posts on the page very easily; that's about the closest you have, unless re621 has something for this.

aacafah said:
You can use the JS console on the desktop browser to auto-click all the posts on the page very easily; that's about the closest you have, unless re621 has something for this.

Could you point me in the right direction for more info on how to do this (unless it is easy to explain)? Thanks!

forum #475213

If you're fine with a less pretty solution, you don't need a script; you can set the mode, open the JS console, & emulate clicking every post on the page with 1 line. I'm on mobile, so I can't check what the selector is, but it's pretty easy. Feel free to DM me if I forget to add it here when I get a chance.

This also might be something re621 can help with.

Edit:
Array.from(document.querySelector("#posts .posts-container").children).forEach((e) => e.click()); is the one liner.