Google Forms를 확장하는 부가기능으로 할 수 있는 몇 가지 작업은 다음과 같습니다.
기본 제공 Apps Script Forms 서비스를 사용하여 Google Forms를 만들고, 액세스하고, 수정할 수 있습니다. 스프레드시트 서비스를 사용하면 양식 응답이 저장된 Google Sheets에 액세스할 수 있습니다.
Forms 서비스를 사용하여 부가기능에서 양식 동작을 제어할 수 있습니다. 예를 들어 양식에서 응답을 수락하는지 또는 응답자에게 확인 메시지를 보내는지 확인할 수 있습니다.
표준 HTML 및 CSS를 사용하여 맞춤 메뉴를 만들고 여러 맞춤 대화상자 및 사이드바 인터페이스를 정의할 수 있습니다. 이러한 UI 구성요소는 응답자에게 표시되는 양식이 아니라 Google Forms 편집기를 확장합니다.
부가기능 트리거를 사용하여 특정 트리거 이벤트가 발생할 때 지정된 함수를 실행할 수 있습니다. 예를 들어 form-submit 설치 가능한 트리거를 사용하면 사용자가 양식 응답을 제출할 때마다 부가기능이 반응할 수 있습니다.
양식 구조
Google 양식은 제목, 설명, 양식 질문 목록으로 구성됩니다.
원하는 경우 양식에 양식 응답이 수집되는 연결된 Google 시트를 포함할 수 있습니다.
각 양식 질문에는 응답자에게 요청하는 정보의 유형을 나타내는 유형 또는 정적 양식 요소 (예: 이미지 또는 동영상)가 있습니다. 각 유형은 Apps Script Forms 서비스의 객체로 표현됩니다. 양식 부가기능은 이 서비스를 사용하여 다음 양식 요소를 추가, 수정, 재정렬 또는 삭제할 수 있습니다.
Forms는 퀴즈로도 사용할 수 있습니다. 양식을 퀴즈로 지정하면 각 양식 질문에 점수와 피드백을 할당할 수 있습니다. 점수 값을 사용하면 퀴즈의 맞춤 채점이 가능합니다. 의견은 양식 서비스의 QuizFeedback 클래스로 표시되며, 관련 양식 질문에 답변한 후 응답자에게 표시되는 텍스트와 링크입니다.
트리거
Apps Script 트리거를 사용하면 양식이 제출되거나 부가기능이 설치될 때와 같이 특정 조건이 충족될 때 스크립트 프로젝트에서 지정된 함수를 실행할 수 있습니다.
Forms 부가기능과 함께 사용할 수 있는 트리거와 사용 시 적용되는 제한사항에 관한 자세한 내용은 부가기능 트리거를 참고하세요.
[null,null,["최종 업데이트: 2025-02-16(UTC)"],[[["Google Forms is a cloud-based solution for creating and sharing questionnaires, surveys, and quizzes, offering real-time collaboration and customization features."],["Forms add-ons enhance the form creation process by enabling connections to other systems, extending functionality, and integrating with Google Workspace apps."],["Developers can leverage Apps Script's Forms service to programmatically control form behavior, access responses, and modify form elements."],["Google Forms supports a variety of question types, including text-based, multiple-choice, grid, and date/time options, as well as static elements like images and videos."],["Forms can be designated as quizzes, allowing for assigning points, providing feedback, and enabling automated grading."]]],["Google Forms, a tool for surveys and quizzes, can be enhanced with add-ons. Add-ons utilize the Apps Script Forms service to create, edit, and control forms, access response data in Google Sheets, and build custom UIs within the editor. They can also implement triggers to execute functions on events like form submissions. Forms comprise questions and static elements; quizzes allow point values and feedback. Add-ons, found on the Google Workspace Marketplace, can enhance the form-building experience.\n"]]