<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>ManifestsApp on tanaike - Google Apps Script, Gemini API, and Developer Tips</title>
    <link>https://tanaikech.github.io/tags/manifestsapp/</link>
    <description>Recent content in ManifestsApp on tanaike - Google Apps Script, Gemini API, and Developer Tips</description>
    <generator>Hugo</generator>
    <language>ja</language>
    <copyright>&amp;copy; 2026. All rights reserved.</copyright>
    <lastBuildDate>Wed, 12 Feb 2020 14:13:16 +0900</lastBuildDate>
    <atom:link href="https://tanaikech.github.io/tags/manifestsapp/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Updated: GAS Library - ManifestsApp</title>
      <link>https://tanaikech.github.io/2020/02/12/updated-gas-library-manifestsapp/</link>
      <pubDate>Wed, 12 Feb 2020 14:13:16 +0900</pubDate>
      <guid>https://tanaikech.github.io/2020/02/12/updated-gas-library-manifestsapp/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://github.com/tanaikech/ManifestsApp&#34;&gt;ManifestsApp&lt;/a&gt; was updated to v1.0.4.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;v1.0.4 (February 12, 2020)&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&amp;ldquo;runtimeVersion&amp;rdquo; got to be able to be got and set. Now, &amp;lsquo;STABLE&amp;rsquo;, &amp;lsquo;V8&amp;rsquo;, &amp;lsquo;DEPRECATED_ES5&amp;rsquo; can be used as the value of &amp;ldquo;runtimeVersion&amp;rdquo;. For example, you can enable V8 with the following script.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-javascript&#34; data-lang=&#34;javascript&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;var&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;r&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;ManifestsApp&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;setProjectId&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;projectId&lt;/span&gt;).&lt;span style=&#34;color:#a6e22e&#34;&gt;setRuntimeVersion&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;V8&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;Logger&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;log&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;r&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;As one important point, when &amp;ldquo;STABLE&amp;rdquo; and &amp;ldquo;DEPRECATED_ES5&amp;rdquo; are used for the Google Apps Script project created before 2020 as the value of &amp;ldquo;runtimeVersion&amp;rdquo;, the error of &lt;code&gt;Syntax error: Illegal character.&lt;/code&gt; occurs. So please be careful this. This has been reported at &lt;a href=&#34;https://issuetracker.google.com/issues/149341213&#34;&gt;the issuetracker&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Updated: GAS Library - ManifestsApp</title>
      <link>https://tanaikech.github.io/2018/07/11/updated-gas-library-manifestsapp/</link>
      <pubDate>Wed, 11 Jul 2018 11:03:27 +0900</pubDate>
      <guid>https://tanaikech.github.io/2018/07/11/updated-gas-library-manifestsapp/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://github.com/tanaikech/ManifestsApp&#34;&gt;ManifestsApp&lt;/a&gt; was updated to v1.0.3.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;v1.0.3 (July 11, 2018)&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;By Google&amp;rsquo;s update, &lt;a href=&#34;https://developers.google.com/apps-script/guides/sheets/macros#manifest_structure_for_macros&#34;&gt;&amp;ldquo;sheets&amp;rdquo; was added to manifests&lt;/a&gt; for installing the configuration of Macro. By this, this library was updated.&#xA;&lt;ul&gt;&#xA;&lt;li&gt;You can see the added methods (getSheets(), setSheets()) at &lt;a href=&#34;#Usage&#34;&gt;Usage&lt;/a&gt;.&lt;/li&gt;&#xA;&lt;li&gt;If you set &amp;ldquo;sheets&amp;rdquo;, please put the value of &amp;ldquo;sheets&amp;rdquo; as the resource like below sample.&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;{&amp;quot;macros&amp;quot;: [{&amp;quot;menuName&amp;quot;: &amp;quot;QuickRowSum&amp;quot;, &amp;quot;functionName&amp;quot;: &amp;quot;calculateRowSum&amp;quot;}]}&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Don&amp;rsquo;t put &lt;code&gt;{&amp;quot;sheets&amp;quot;: {&amp;quot;macros&amp;quot;: [{&amp;quot;menuName&amp;quot;: &amp;quot;QuickRowSum&amp;quot;, &amp;quot;functionName&amp;quot;: &amp;quot;calculateRowSum&amp;quot;}]}}&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;font color=&#34;#3366CC&#34;&gt;&lt;strong&gt;You can check this at &lt;a href=&#34;https://github.com/tanaikech/ManifestsApp&#34;&gt;https://github.com/tanaikech/ManifestsApp&lt;/a&gt;.&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Updated: GAS Library - ManifestsApp</title>
      <link>https://tanaikech.github.io/2018/01/29/updated-gas-library-manifestsapp/</link>
      <pubDate>Mon, 29 Jan 2018 13:05:00 +0900</pubDate>
      <guid>https://tanaikech.github.io/2018/01/29/updated-gas-library-manifestsapp/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://github.com/tanaikech/ManifestsApp&#34;&gt;ManifestsApp&lt;/a&gt; was updated to v1.0.2.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;v1.0.2 (January 29, 2018)&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/tanaikech/ProjectApp2&#34;&gt;ProjectApp2&lt;/a&gt; is published, and got to be able to use both standalone script type and container-bound script type.&#xA;&lt;ul&gt;&#xA;&lt;li&gt;By this, this library also got to be able to be used for the both projects.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;For this update, please enable Apps Script API.&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Please check &lt;a href=&#34;https://github.com/tanaikech/ManifestsApp#HowToInstall&#34;&gt;&amp;ldquo;How to install&amp;rdquo;&lt;/a&gt;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;font color=&#34;#3366CC&#34;&gt;&lt;strong&gt;You can check this at &lt;a href=&#34;https://github.com/tanaikech/ManifestsApp&#34;&gt;https://github.com/tanaikech/ManifestsApp&lt;/a&gt;.&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
