Google App Scripts for Google Tasks
Google App Script for counting tasks in a tasklist.
- Run
list_tasklist_indentifiers()to get the tasklistidfor theTASKLIST_IDconstant. - Add a Trigger that runs function
icebox()with Time-driven event source and configure it as desired.
Google App Script for managing stale tasks.
- Run
list_tasklist_indentifiers()to get the tasklistidfor theSOURCE_TASKLISTandTARGET_TASKLISTconstants. - Edit
ICEBOX_UNDATED_DELAYconstant which specifies the minimum amount of time in milliseconds before tasks without due dates are moved fromSOURCE_TASKLISTtoTARGET_TASKLIST. - Edit
ICEBOX_OVERDUE_DELAYconstant which specifies the minimum amount of time in milliseconds before overdue tasks are moved fromSOURCE_TASKLISTtoTARGET_TASKLIST. - Edit
THAW_DELAYconstant which which specifies the minimum amount of time in milliseconds before task due dates are moved fromTARGET_TASKLISTtoSOURCE_TASKLIST. - Add a Trigger that runs function
icebox()with Time-driven event source and configure it as desired.