Created
May 13, 2019 08:40
-
-
Save hootlex/dbf56b29a58a92e2aec67e927f9fdfa8 to your computer and use it in GitHub Desktop.
Get links for all Dropbox Paper files under a folder
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
let docs, toCopy | |
docs = Array.from($('.hp-list-item-doc')) | |
toCopy = '' | |
docs.forEach(doc => { | |
// let name = doc.querySelector('.hp-list-item-title').firstChild.innerText | |
toCopy += ` | |
` + doc.href | |
}) | |
copy(toCopy) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment