Google Forms Autosubmit

Google forms auto-submit application built with React JS

Google Forms Autosubmit란 무엇입니까?

Google Forms Autosubmit은(는) DevlUp Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google forms auto-submit application built with React JS"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Google Forms Autosubmit 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The extension allows you to set an alarm for a Google form that you may wish to complete in the future before the deadline. You may also use it to auto-submit a Google Form that has been assigned to you in the Google Classroom.

To ensure that the Google Form submission occurs at the correct time, the user will manually input the form URL, as well as the starting and ending times.
The user may see the alarms they've set on the "Alarms" page.

The "Find Form" button on the "Automatic" Page allows the user to locate the corresponding Google Form connected with the Assignment on Google Classroom, which is auto-submitted after the timer expires.
If the Assignment does not have any google forms attached, the extension shows an error message.

Hope you find this extension helpful :)
This project is open-sourced at https://github.com/devlup-labs/auto-submit-quiz                    

확장 프로그램 기본 정보

이름 Google Forms Autosubmit Google Forms Autosubmit
ID kkecpckbpgmoceclgfclfjellanlppda
공식 URL https://chromewebstore.google.com/detail/google-forms-autosubmit/kkecpckbpgmoceclgfclfjellanlppda
설명 Google forms auto-submit application built with React JS
파일 크기 1.93 MB
설치 횟수 574
현재 버전 1.1.0
최근 업데이트 2022-06-11
출시 날짜 2022-03-30
평점 4.88/5 총 8 개의 평점
개발자 DevlUp Labs
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/devlup-labs/auto-submit-quiz/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Google forms auto-submit application built with React JS",
    "version": "1.1.0",
    "manifest_version": 3,
    "name": "Google Forms Autosubmit",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "64": "icon-64.png",
            "128": "icon-128.png"
        }
    },
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/forms\/*",
                "https:\/\/classroom.google.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "alarms",
        "activeTab"
    ]
}