Account storage grace period is now live

Hi Replit Builders,

In our previous ask post we detailed our plan for resolving issues some Explorers were hitting with account storage limits. If you haven’t read the previous post, we would recommend doing so. We are excited to inform you that the grace period for account storage limits is now in place.

Feel free to turn on Explorer and enjoy building far beyond the previous 1 GiB per Repl limits. For context, this grace period will stay in effect pending two product improvements:

  1. A feature providing a user experience to mass delete Repls so you don’t have to go through them one by one.
  2. The ability to purchase additional account wide storage on Replit independent of a Free, Hacker, or Pro plan.

Once these product improvements are in place, we will notify you and provide an additional 30-day grace period before enforcements go live. We look forward to seeing what you build with your increase per Repl limits.

Thanks,
The Replit Team

15 Likes

I seem to have this feature, and I don’t think I’m an Explorer.

1 Like

You can check if you are an explorer by going to replit.com/account#roles and seeing if the explorer toggle is on or not.

3 Likes

I can confirm that users without explorer seem to have access to the bulk delete option.

3 Likes

I just checked and I can select multiple Repls, however when I move them, only one of them moves. I can delete multiple Repls though and that’s the big thing. Nice improvement.

4 Likes

It is off. I checked earlier after I posted it.

That was a feature I requested here Option to Move when Bulk Selecting Repls - #4 by jesse

2 Likes

I moved a repl to a Teams Pro team, but I’m still getting penalized for it, even though it’s no longer on my account. Is this a bug? I hope it is…

4 Likes

Hey Everyone, I wanted jump in here to confirm that mass delete is now out to all Replit builders.

6 Likes

It would be really good to also add a download option for your repl from the multiselect.

4 Likes

It still counts, even if you delete or move the Repl. That happened with Egress too.

1 Like

That should not be the case.

3 Likes

Yeah it’s a bug. Idk if it’s actually been reported, though.

1 Like

You should make that a feature request.

1 Like

Hey @QwertyQwerty88 ! Do you remember the name of the Repl you deleted that’s still counting towards your storage?

5 Likes

Hey @9pfs1, do you have a Repl link so the team can take a look?

5 Likes

I believe it’s this repl: https://replit.com/@yc-community/gitlab-test

5 Likes

Python660 made a script a bit ago. If you select some Repls using multiselect and paste this into the address bar:

xjavascript:(function(){(function(){let popup = document.querySelector(".css-p60fys"); if (! popup){alert("Please select at least 1 repl(s) before using this tool.");} else{let btndiv = popup.children[1].children[0]; console.log(btndiv.children[0].innerHTML); btndiv.innerHTML = `<button onclick='let pickedRepls = []; document.querySelectorAll(".css-ow5df0").forEach(function(e, i){let selected = e.children[0].children[0].children[0].children[0].children[0].children[0].checked; console.log(selected); if (selected){pickedRepls.push(i)}}); console.log(pickedRepls); document.querySelectorAll(".css-1nj74pm")[1].click();setTimeout(function(){document.querySelectorAll(".css-ow5df0").forEach(function(e, i){if (pickedRepls.includes(i)){console.log(e); window.open(e.children[0].href + ".zip")}});},500)' class="replStar css-1nj74pm" type="button" aria-label="Star" style="--height: 24px; --width: 24px;"><img src="data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' height='16' viewBox='0 -960 960 960' width='16'%3e%3cpath fill='%23FFFFFF' d='M480-313 287-506l43-43 120 120v-371h60v371l120-120 43 43-193 193ZM220-160q-24 0-42-18t-18-42v-143h60v143h520v-143h60v143q0 24-18 42t-42 18H220Z'/%3e%3c/svg%3e"/></button>`}})()})()

And then remove the x in the beginning, hit enter, and the trash can should turn into a download icon! (or a blank icon, it might glitch, but the button will still work) and you can now bulk download! To get the regular trash can back, you can just refresh or exit the page.

2 Likes