Skip to content

Instantly share code, notes, and snippets.

@wadoon
Last active December 1, 2025 14:06
Show Gist options
  • Select an option

  • Save wadoon/5f1a18378d9820f9544b141c229f3bea to your computer and use it in GitHub Desktop.

Select an option

Save wadoon/5f1a18378d9820f9544b141c229f3bea to your computer and use it in GitHub Desktop.
Retrieve the git repositories from your Overleaf project page for mass backup
/* Execute the following line in your Javascript console on your Overleaf project page.
After you have unfold all of your projects.
*/
document.querySelectorAll(".dash-cell-name a").forEach((a) => console.log("git clone https://[email protected]/"+a.href.substr(33) +" '"+ a.text+"'"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment