Open
Description
Google docs has a way to assign comments to specific people which leads to action items floating around and it makes me sad that people try to assign stuff to me.
Mostly, because there is no great overview to see which documents have assigned actions and how many there are. The only thing you can do is go to https://docs.google.com/document/u/0/?tgif=d and scrape it like so
// loop through list of docs
for (let doc of document.querySelectorAll(".docs-homescreen-list-item-title")) {
// find those that have an action item count
for (let needsFollowUp of doc.querySelectorAll(".docsshared-action-items-badge-count")) {
let docTitle = doc.title;
let amnt = needsFollowUp.textContent;
let url = ""; //FIXME
}
}```
Activity