I have created a GMail Add-on and I am currently using PropertiesService.getUserProperties() to save some configuration data. Recently however, we have a need to share configuration data for all users in the same domain. And I was thinking of using the PropertiesService.getScriptProperties() to do so.
I would just like to ask a question related to the following documentation on Google's apps script :
https://developers.google.com/apps-script/reference/properties/properties-service
For properties set using the scriptProperties.setProperty() API, will the property set be shared with all users regardless of domain? Or only users under the same domain will share the same value?
So for example, 2 unrelated domains (domain1.com and domain5.com) installed my GMail Add-on. user1@domain1.com sets the add-on scriptproperty "url" to "google.com", will user2@domain5.com see the url as "google.com" as well? Or only users under domain1.com will be able to see "url" as "google.com".
Thank you.

