0

I have a similar question to both of the questions below. I have a script bound to a google sheets, and I use this sheet as template. However I'm looking for an option to not have to grant permission each time I copy the file. From reading the answers in the questions below, I understand I have to publish a standalone script as an add-on. However, reading this answer, I see that I need to create a Cloud Platform Dashboard and all bunch of stuff which looks pretty messy to me, such as google reviewing process. Again, it is only for personal use... Is there a way I can privately publish it as an add-on, without having to go through all the process? Thank you

What is the best way to create Container-bound Scripts that can be cloned? Grant permissions on open for first time for a bound script in Google Sheets

  • 2
    You can always use a standalone script, if you don't want spreadsheet hook triggers like onEdit or button or anything else. Write a standalone script which loops through your spreadsheets doing what's needed. – TheMaster Dec 16 '20 at 17:50
  • if you have your own domain you can publish a domain-wide addon without going through the verification process. – Ninca Tirtil Dec 16 '20 at 19:53

2 Answers2

0

If you don't want spreadsheet hook triggers like onEdit or button or anything else, You can use a standalone script.

A standalone script can be written, which loops through your spreadsheets doing what's needed based on a time trigger.

TheMaster
  • 45,448
  • 6
  • 62
  • 85
0

Adding to the already existing answer

Publishing a private add-on does not require going through the Google Review process, especially since it is for personal use only.

Therefore, the situations below do not require verification:

  1. If you want to deploy the add-on solely for internal use which means that the add on will be used only by people in your Google Workspace or Cloud Identity organization.

  2. If you want to use the add-on domain wide which means that the add on will be used only by Google Workspace enterprise users within the domain.

For the whole list of exceptions from the verification process, you can check this here.

Reference

ale13
  • 5,679
  • 3
  • 10
  • 25