ラジオボタンとチェックボックスの質問には
「その他」の入力欄を追加できます
(プルダウンの質問には追加できないようです)
フォームの編集画面
「その他」を追加 をクリックすると選択肢の最後に「その他…」が追加されます
フォームの回答画面
回答する際には「その他」を選択して入力することができるようになります

Apps Script で作成する場合
以下の Code.gs で formName, description, title の値を書き換えて
createMultipleChoiceWithOther() を実行すると
編集用のURLがログに出力されます
Code.gs
function createMultipleChoiceWithOther() {
const formName = 'Favorite Color Survey';
const description = 'Please tell us your favorite color.';
const title = 'What is your favorite color?';
const form = FormApp.create(formName);
form.setDescription(description);
const item = form.addMultipleChoiceItem();
item.setTitle(title)
.setChoiceValues(['Red', 'Blue', 'Green', 'Yellow'])
.showOtherOption(true) // ← これで「その他」の入力欄を表示
.setRequired(false);
form.setPublished(false);
Logger.log('Form Edit URL: ' + form.getEditUrl());
}
フォームの編集画面
フォームの回答画面
Tips
チェックボックスに実装する場合
function createCheckboxWithOther() {
const formName = 'Favorite Colors Survey';
const description = 'Please tell us your favorite colors.';
const title = 'What are your favorite colors?';
const form = FormApp.create(formName);
form.setDescription(description);
const item = form.addCheckboxItem();
item.setTitle(title)
.setChoiceValues(['Red', 'Blue', 'Green', 'Yellow'])
.showOtherOption(true) // ← これで「その他」の入力欄を表示
.setRequired(false);
form.setPublished(false);
Logger.log('Form Edit URL: ' + form.getEditUrl());
}
Reference
Class MultipleChoiceItem > showOtherOption(enabled)
Class CheckboxItem > showOtherOption(enabled)
関連リンク