sanjosanjo@kbin.socialtoTechnology@beehaw.org•I don't see how Lemmy will fill the gap of Reddit - it's resulting in fragmentation
0·
1 year agoI’m posting this from kbin, so I don’t know if you will see this, but I thought Magazine was a group set up by kbin (like a sub-reddit, with a specific name). Are you saying that a kbin Magazine is something I set up myself with my own collection of content?
In Chrome you don’t even need to open the developer console. To get a comma separated list, just go to:
https://www.reddit.com/subreddits
Then paste this in the address bar:
javascript:$(‘body’).replaceWith(‘<body>’+$(‘.subscription-box’).find(‘li’).find(‘a.title’).map((_, d) => $(d).text()).get().join(“\”,\“”)+‘</body>’);javascript.void()
The trick is that when you first paste it, the leading “javascript:” gets stripped off. So you have to type it in again.
This will give a list in the browser:
javascript:$(‘body’).replaceWith(‘<body>’+$(‘.subscription-box’).find(‘li’).find(‘a.title’).map((_, d) => $(d).text()).get().join(“<br>”)+‘</body>’);javascript.void()