Skip to content

Add google docs action items? #11

Open
@mozfreddyb

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions