appmaker 如何更改浏览器历史记录中的名称

appmaker how to change the name in the browser history

我不想在浏览器历史记录中使用应用程序的名称,而是客户的名称,这样返回到特定客户会更容易...

我用

 google.script.history.push(
          {'timestamp': new Date().getTime()},
          {'Patient': Patient},
          "test"
      );

将参数推送到url,虽然最后一个参数可能会出现在浏览器历史记录中,但事实并非如此,只会显示应用程序名称... 知道如何实现吗?

不幸的是,App Maker 应用程序以框架形式存在,其来源(url 主机名)与 parent window.

这意味着任何更改 window 标题(用作浏览器历史记录中的标题)的尝试都会导致错误。