Skip to content

Instantly share code, notes, and snippets.

@alanzchen
Created February 2, 2022 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanzchen/05e41b082e3f08d3c2756f6329ad5da5 to your computer and use it in GitHub Desktop.
Save alanzchen/05e41b082e3f08d3c2756f6329ad5da5 to your computer and use it in GitHub Desktop.
Anonymize PDF annotations in Adobe Acrobat DC Pro
this.syncAnnotScan();
var annots = this.getAnnots();
for (var i = 0; i < annots.length; i++) {
annots[i].author = "Redacted";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment