Sheet Monkey - Form Builder for Sheets

A form builder for Google Sheets that allows you to embed forms on any site with any style.

Sheet Monkey - Form Builder for Sheets란 무엇입니까?

Sheet Monkey - Form Builder for Sheets은(는) https://sheetmonkey.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A form builder for Google Sheets that allows you to embed forms on any site with any style."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Sheet Monkey - Form Builder for Sheets 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Build web forms that save their data in Google Sheets.

Sheet Monkey is a form builder that saves data in Google Sheets. Sheet Monkey forms are fully embeddable on any website or platform and they can be shared on social media or messaging apps. Forms can be completely customized or you can use our responsive default styles.

Advanced features include:

• File uploads
• Email notifications
• Security restrictions
• Duplicate submission prevention
• Templates for common forms

Sheet Monkey forms can be integrated with:

• Static HTML sites
• Webflow sites
• WordPress sites
• Carrd sites
• and more!                    

확장 프로그램 기본 정보

이름 Sheet Monkey - Form Builder for Sheets Sheet Monkey - Form Builder for Sheets
ID dnohamccnpiapcadmokckehgebdednko
공식 URL https://chromewebstore.google.com/detail/sheet-monkey-form-builder/dnohamccnpiapcadmokckehgebdednko
설명 A form builder for Google Sheets that allows you to embed forms on any site with any style.
파일 크기 1.41 MB
설치 횟수 1,717
현재 버전 1.0.0
최근 업데이트 2021-11-24
출시 날짜 2021-10-22
평점 5.00/5 총 2 개의 평점
개발자 https://sheetmonkey.io
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.sheetmonkey.io/policies/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sheet Monkey - Form Builder for Sheets",
    "description": "A form builder for Google Sheets that allows you to embed forms on any site with any style.",
    "homepage_url": "https:\/\/github.com\/levinunnink\/sheetmonkey-chrome",
    "version": "1.0.0",
    "manifest_version": 3,
    "action": {
        "default_title": "Show Sheet Monkey form builder"
    },
    "icons": {
        "16": "public\/icon16.png",
        "48": "public\/icon48.png",
        "128": "public\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "after.js"
            ],
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/*",
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "public\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}