Created
February 2, 2022 18:10
-
-
Save alanzchen/05e41b082e3f08d3c2756f6329ad5da5 to your computer and use it in GitHub Desktop.
Anonymize PDF annotations in Adobe Acrobat DC Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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