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文件

下載Sheet Monkey - Form Builder for Sheets擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
    ]
}