This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const sheet = SpreadsheetApp.getActiveSheet(); | |
| /** | |
| * カスタムメニュー作成 | |
| */ | |
| function onOpen(e) { | |
| const ui = SpreadsheetApp.getUi(); | |
| const menu = ui.createMenu('GIG'); | |
| menu.addItem("ダミーアカウント追加", 'genDummyMenu_'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>カレーのレシピ</title> | |
| </head> | |
| <body> |
OlderNewer