{"id":4293,"date":"2014-03-24T16:19:11","date_gmt":"2014-03-24T07:19:11","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=4293"},"modified":"2014-03-24T16:19:11","modified_gmt":"2014-03-24T07:19:11","slug":"google-apps-script%e3%82%b5%e3%82%a4%e3%83%89%e3%83%90%e3%83%bc%e3%81%8b%e3%82%89%e7%94%bb%e5%83%8f%e3%82%92%e3%83%89%e3%82%ad%e3%83%a5%e3%83%a1%e3%83%b3%e3%83%88%e3%81%ab%e6%8c%bf%e5%85%a5%e3%81%99-2","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=4293","title":{"rendered":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8)"},"content":{"rendered":"<p>\u300c<a href=\"\/\/www.ka-net.org\/blog\/?p=4284\" title=\"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\" target=\"_blank\">[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)<\/a>\u300d\u3067\u306f\u3001\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u4e0a\u306b\u753b\u50cf\u3092\u633f\u5165\u3059\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u4eca\u56de\u306f\u6587\u66f8\u306e\u5834\u5408\u306e\u51e6\u7406\u3092\u8003\u3048\u3066\u307f\u307e\u3059\u3002<\/p>\n<p><strong>\u30fb\u30b3\u30fc\u30c9.gs<\/strong><\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">var ui = DocumentApp.getUi();\r\nvar html = HtmlService.createHtmlOutputFromFile('Pixabay').setTitle('Pixabay\u304b\u3089\u753b\u50cf\u3092\u633f\u5165').setWidth(300);\r\n\r\nfunction onOpen(e){\r\n    ui.showSidebar(html);\r\n}\r\n\r\nfunction searchPixabayPhoto(txt){\r\n    var content = '';\r\n    var user = ''; \/\/Pixabay\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u3092\u3053\u3053\u306b\u5165\u529b\r\n    var key = ''; \/\/Pixabay\u306eAPI\u30ad\u30fc\u3092\u3053\u3053\u306b\u5165\u529b\r\n    var url = 'http:\/\/pixabay.com\/api\/?username=' + user + '&amp;key=' + key + '&amp;lang=ja&amp;image_type=all&amp;orientation=all&amp;order=popular&amp;search_term=' + encodeURIComponent(txt);\r\n    var res = UrlFetchApp.fetch(url);\r\n    var data = JSON.parse(res.getContentText());\r\n    if(parseFloat(data.totalHits) &lt; 1){\r\n        content = '&lt;h3&gt;\u5199\u771f\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002&lt;\/h3&gt;';\r\n    }else{\r\n        content = '&lt;ol&gt;';\r\n        data.hits.forEach(function(item){\r\n            content += '&lt;li&gt;&lt;img src=&quot;' + item.previewURL + '&quot; alt=&quot;' + item.webformatURL + '&quot; title=&quot;\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u753b\u50cf\u3092\u633f\u5165\u3057\u307e\u3059\u3002&quot;&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;' + item.pageURL + '&quot; target=&quot;_blank&quot; title=&quot;\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u5199\u771f\u306e\u30da\u30fc\u30b8\u3092\u958b\u304d\u307e\u3059\u3002&quot;&gt;PageURL&lt;\/a&gt;&lt;\/li&gt;&lt;\/ul&gt;&lt;\/li&gt;';\r\n        });\r\n        content += '&lt;\/ol&gt;';\r\n    }\r\n    html.append(content);\r\n    ui.showSidebar(html); \/\/\u30b5\u30a4\u30c9\u30d0\u30fc\u518d\u63cf\u753b\r\n}\r\n\r\nfunction insertPixabayPhoto(url){\r\n    var dat = UrlFetchApp.fetch(url);\r\n    DocumentApp.getActiveDocument().getBody().insertImage(0, dat.getBlob());\r\n}<\/pre>\n<p><strong>\u30fbPixabay.html<\/strong><\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;meta charset=&quot;UTF-8&quot;&gt;\r\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https:\/\/ssl.gstatic.com\/docs\/script\/css\/add-ons.css&quot;&gt;\r\n        &lt;style&gt;\r\n            #main{padding:20px;}\r\n            img:hover{cursor:pointer;}\r\n        &lt;\/style&gt;\r\n        &lt;script src=&quot;\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.11.0\/jquery.min.js&quot;&gt;&lt;\/script&gt;\r\n        &lt;script&gt;\r\n            $(function(){\r\n                $(&quot;#q&quot;).keypress(function(e){\r\n                    switch(e.which){\r\n                        case 13: \/\/Enter\u30ad\u30fc\u5165\u529b\u6642\u306e\u51e6\u7406\r\n                            google.script.run.searchPixabayPhoto($(this).val());\r\n                            break;\r\n                    }\r\n                });\r\n                \r\n                $(&quot;img&quot;).click(function(){\r\n                    google.script.run.insertPixabayPhoto($(this).attr(&quot;alt&quot;));\r\n                });\r\n            });\r\n        &lt;\/script&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;div id=&quot;main&quot;&gt;\r\n            &lt;input id=&quot;q&quot; type=&quot;text&quot; title=&quot;\u30ad\u30fc\u30ef\u30fc\u30c9\u5165\u529b\u5f8cEnter\u30ad\u30fc\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044\u3002&quot;&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GoogleAppsScript_08_01.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GoogleAppsScript_08_01.jpg\" alt=\"GoogleAppsScript_08_01\" width=\"1062\" height=\"687\" class=\"alignnone size-full wp-image-4294\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GoogleAppsScript_08_01.jpg 1062w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GoogleAppsScript_08_01-300x194.jpg 300w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GoogleAppsScript_08_01-1024x662.jpg 1024w\" sizes=\"auto, (max-width: 1062px) 100vw, 1062px\" \/><\/a><\/p>\n<p>\u300c<a href=\"\/\/www.ka-net.org\/blog\/?p=4284\" title=\"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\" target=\"_blank\">[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)<\/a>\u300d\u306e\u30b3\u30fc\u30c9\u3068\u306e\u9055\u3044\u306f\u753b\u50cf\u633f\u5165\u90e8\u5206\u3060\u3051\u3067\u305d\u306e\u4ed6\u306f\u307b\u3068\u3093\u3069\u540c\u3058\u3067\u3059\u3002<\/p>\n<ul>\n<li>getBlob()<\/li>\n<li style=\"list-style-type:none;\"><a href=\"https:\/\/developers.google.com\/apps-script\/reference\/url-fetch\/http-response?hl=ja#getBlob%28%29\" target=\"_blank\" title=\"getBlob()\">https:\/\/developers.google.com\/apps-script\/reference\/url-fetch\/http-response?hl=ja#getBlob%28%29<\/a><\/li>\n<li>insertImage(childIndex, image)<\/li>\n<li style=\"list-style-type:none;\"><a href=\"https:\/\/developers.google.com\/apps-script\/reference\/document\/body?hl=ja#insertImage%28Integer,BlobSource%29\" target=\"_blank\" title=\"insertImage(childIndex, image)\">https:\/\/developers.google.com\/apps-script\/reference\/document\/body?hl=ja#insertImage%28Integer,BlobSource%29<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f\u3001\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u4e0a\u306b\u753b\u50cf\u3092\u633f\u5165\u3059\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u4eca\u56de\u306f\u6587\u66f8\u306e\u5834\u5408\u306e\u51e6\u7406\u3092\u8003\u3048\u3066\u307f\u307e\u3059\u3002 \u30fb\u30b3\u30fc [&hellip;]","protected":false},"author":1,"featured_media":7113,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[126],"tags":[],"class_list":["post-4293","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-google"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=4293\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8) | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=4293\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2014-03-24T07:19:11+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2014-03-24T07:19:11+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8) | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#article\",\"name\":\"[Google Apps Script]\\u30b5\\u30a4\\u30c9\\u30d0\\u30fc\\u304b\\u3089\\u753b\\u50cf\\u3092\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306b\\u633f\\u5165\\u3059\\u308b(\\u6587\\u66f8) | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"[Google Apps Script]\\u30b5\\u30a4\\u30c9\\u30d0\\u30fc\\u304b\\u3089\\u753b\\u50cf\\u3092\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306b\\u633f\\u5165\\u3059\\u308b(\\u6587\\u66f8)\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Google.png\",\"width\":790,\"height\":480},\"datePublished\":\"2014-03-24T16:19:11+09:00\",\"dateModified\":\"2014-03-24T16:19:11+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#webpage\"},\"articleSection\":\"Google\\u95a2\\u9023\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126#listItem\",\"name\":\"Google\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126#listItem\",\"position\":2,\"name\":\"Google\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#listItem\",\"name\":\"[Google Apps Script]\\u30b5\\u30a4\\u30c9\\u30d0\\u30fc\\u304b\\u3089\\u753b\\u50cf\\u3092\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306b\\u633f\\u5165\\u3059\\u308b(\\u6587\\u66f8)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#listItem\",\"position\":3,\"name\":\"[Google Apps Script]\\u30b5\\u30a4\\u30c9\\u30d0\\u30fc\\u304b\\u3089\\u753b\\u50cf\\u3092\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306b\\u633f\\u5165\\u3059\\u308b(\\u6587\\u66f8)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126#listItem\",\"name\":\"Google\\u95a2\\u9023\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293\",\"name\":\"[Google Apps Script]\\u30b5\\u30a4\\u30c9\\u30d0\\u30fc\\u304b\\u3089\\u753b\\u50cf\\u3092\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306b\\u633f\\u5165\\u3059\\u308b(\\u6587\\u66f8) | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"\\u300c[Google Apps Script]\\u30b5\\u30a4\\u30c9\\u30d0\\u30fc\\u304b\\u3089\\u753b\\u50cf\\u3092\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306b\\u633f\\u5165\\u3059\\u308b(\\u30b9\\u30d7\\u30ec\\u30c3\\u30c9\\u30b7\\u30fc\\u30c8)\\u300d\\u3067\\u306f\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Google.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4293#mainImage\"},\"datePublished\":\"2014-03-24T16:19:11+09:00\",\"dateModified\":\"2014-03-24T16:19:11+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8) | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=4293","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#article","name":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8) | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8)","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Google.png","width":790,"height":480},"datePublished":"2014-03-24T16:19:11+09:00","dateModified":"2014-03-24T16:19:11+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#webpage"},"articleSection":"Google\u95a2\u9023"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=126#listItem","name":"Google\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=126#listItem","position":2,"name":"Google\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=126","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#listItem","name":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#listItem","position":3,"name":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8)","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=126#listItem","name":"Google\u95a2\u9023"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=4293","name":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8) | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Google.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=4293\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4293#mainImage"},"datePublished":"2014-03-24T16:19:11+09:00","dateModified":"2014-03-24T16:19:11+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8) | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f","og:url":"https:\/\/www.ka-net.org\/blog\/?p=4293","article:published_time":"2014-03-24T07:19:11+00:00","article:modified_time":"2014-03-24T07:19:11+00:00","twitter:card":"summary","twitter:title":"[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u6587\u66f8) | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"\u300c[Google Apps Script]\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u753b\u50cf\u3092\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u633f\u5165\u3059\u308b(\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8)\u300d\u3067\u306f"},"aioseo_meta_data":{"post_id":"4293","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:08:04","updated":"2022-09-14 02:41:31","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Google.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-17f","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4293","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4293"}],"version-history":[{"count":3,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4293\/revisions"}],"predecessor-version":[{"id":4297,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4293\/revisions\/4297"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7113"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4293"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4293"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4293"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}