Skip to content

Instantly share code, notes, and snippets.

@FGRibreau
Created September 14, 2025 06:21
Show Gist options
  • Save FGRibreau/881eb41f2938b3305beb0d3ec54e1e24 to your computer and use it in GitHub Desktop.
Save FGRibreau/881eb41f2938b3305beb0d3ec54e1e24 to your computer and use it in GitHub Desktop.
Bulk signed document export from yousign // Exporter l'ensemble de vos documents signés de yousign
# 1. open: https://yousign.app/auth/workspace/requests
# 2. switch "result per page" to 50
# 3. then open your browser javascript console and paste this to export all signed document from current page
# 4. once completed, move to next page and move back to 3.
$$('button').filter(x => x.innerText.toLowerCase().includes('télécharger')).forEach((x, i) => setTimeout(() => x.click(), i*1000))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment