Google App Scripts for Google Tasks
Google App Script for counting tasks in a tasklist.
- Run
list_tasklist_indentifiers()
to get the tasklistid
for theTASKLIST_ID
constant. - 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 tasklistid
for theSOURCE_TASKLIST
andTARGET_TASKLIST
constants. - Edit
ICEBOX_UNDATED_DELAY
constant which specifies the minimum amount of time in milliseconds before tasks without due dates are moved fromSOURCE_TASKLIST
toTARGET_TASKLIST
. - Edit
ICEBOX_OVERDUE_DELAY
constant which specifies the minimum amount of time in milliseconds before overdue tasks are moved fromSOURCE_TASKLIST
toTARGET_TASKLIST
. - Edit
THAW_DELAY
constant which which specifies the minimum amount of time in milliseconds before task due dates are moved fromTARGET_TASKLIST
toSOURCE_TASKLIST
. - Add a Trigger that runs function
icebox()
with Time-driven event source and configure it as desired.