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