I have a Google Workspace Add on already in the marketplace. I am developing a feature that allows user to make change to a sheet and send those changes automatically to a third party service.
It works correctly for me, I have even created a new Google account in incognito mode, installed the add on and tested the feature from the deployed version and it is also working. But for the rest of the users I have talked with the trigger is not firing.
Do you have any ideas?
I have also defined a global function onEdit but that one is also not firing:
function onEdit(e: GoogleAppsScript.Events.SheetsOnEdit) {
console.log('onEdit');
console.log(e);
}
The add on has all the required scopes:
And as I mentioned, I created a new Google account, installed the add on and it worked for that one so I don't really know what to try next.