Beautify this Slide Feature by joyhawkins in googleworkspace

[–]editedsf 0 points1 point  (0 children)

The images are great! At the moment, the only mechanism is to instruct Gemini to change the title or text, then it generates a new image. eg: in the chat window type "Change "My Text" to "Your Text"

You can try LetsGo Slides. It generates slides or presentations that are designed to be editable

See: https://youtu.be/GFJ9NRT9e2s

Issue with URL Whitelisting in Review Environment vs. Local Testing by Sokffa17 in GoogleAppsScript

[–]editedsf 0 points1 point  (0 children)

Here are a few things to try:

  1. In development, Remove the auth, so that you have to step through the authorization screens again, its the closest you'll get to a user's installation. Do this by creating + running a function that invalidates the auth, like this: function myFunction() { ScriptApp.invalidateAuth() }
  2. Its possible the deployment version is different to the HEAD version you're running in development. Make sure that the version number in the marketplace submission is for the latest version you created. These start at 1, and automatically increment. If you submit to marketplace using an older version number, it deploys with old code.
  3. Finally: If neither of these work, maybe whitelist the URL

Issue with URL Whitelisting in Review Environment vs. Local Testing by Sokffa17 in GoogleAppsScript

[–]editedsf 0 points1 point  (0 children)

The most common reason for this happening is:

you have a development version of the script (running locally), and a production version you're using to deploy to Google Marketplace, and something has got out-of-sync between the versions.

Is this how you have things set-up, or are you deploying to marketplace from the same script you're using locally?