as title, Is it possible to export every project under the account?
Could you please clarify what you mean by this? Do you mean is it possible to DOWNLOAD your Repls? We need clarification as to what you mean by “export”
yes, that’s exactly what I mean, download all my Repls. Preferably with one single button rather than one by one.
Thank you
For that you would need a list of your Repls’ names. I just spent a little time researching GraphQL (an API that lets you get Replit info) but didn’t get much. However, here is a bookmarklet you can run if you have a list of Repls you want to download:
javascript:(function(){var b=prompt("Enter the list of Repl names separated by commas.").split(",").map(a=>a.trim()).map(a=>window.open("https://replit.com/@q1135854010/"+a+".zip"));})()
To run that, bookmark a page, press More…, paste the above code into the URL box, and press save. Then just click that bookmark on any page (except the new tab page since they don’t run on that page) and follow the instructions. This should let you put a list of your repl names separated by commas and downloads all of them (as long as you enable popups).
If q1135854010 isn’t the account you want to download for, then you can use this code instead, which will ask you for a username first:
javascript:(function(){var j=prompt("Enter Replit username");var b=prompt("Enter the list of Repl names separated by commas.").split(",").map(a=>a.trim()).map(a=>window.open("https://replit.com/@" + j + "/"+a+".zip"));})()
Hope this helps. Please ask if you have any more questions regarding this!