this post was submitted on 11 Mar 2025
2437 points (99.3% liked)

Fediverse

32445 readers
2020 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).

If you wanted to get help with moderating your own community then head over to [email protected]!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration)

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 22 points 3 weeks ago (1 children)

You can use this script with a browser addon like Tampermonkey to get around the sign-in requirement:

// ==UserScript==
// @name         reddit - unblock (create cookie and reload)
// @namespace    Violentmonkey Scripts
// @match        *://*.reddit.com/*
// @grant        none
// @version      2024-01-08
// @noframes
// @license      MIT License
// @description  for "Blocked" "whoa there, pardner!" cowboy bs
// ==/UserScript==
/* thanks: https://www.reddit.com/r/mullvadvpn/comments/18jbxb2 */
if (document.title === "Blocked") {
  document.cookie="reddit_session=;Domain=.reddit.com;Path=/;Expires=;Secure=true;SameSite=None";
  window.location.reload();
}
[โ€“] [email protected] 9 points 3 weeks ago* (last edited 3 weeks ago)

Why should the user have to fix reddit to make it functional?