Sheet Monkey - Form Builder for Sheets

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

O que é Sheet Monkey - Form Builder for Sheets?

Sheet Monkey - Form Builder for Sheets é uma extensão do Chrome desenvolvida por https://sheetmonkey.io, e sua principal característica é "A form builder for Google Sheets that allows you to embed forms on any site with any style.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Sheet Monkey - Form Builder for Sheets

Baixe arquivos de extensão Sheet Monkey - Form Builder for Sheets no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Sheet Monkey - Form Builder for Sheets Sheet Monkey - Form Builder for Sheets
ID dnohamccnpiapcadmokckehgebdednko
URL Oficial https://chromewebstore.google.com/detail/sheet-monkey-form-builder/dnohamccnpiapcadmokckehgebdednko
Descrição A form builder for Google Sheets that allows you to embed forms on any site with any style.
Tamanho do Arquivo 1.41 MB
Contagem de Instalações 1,717
Versão Atual 1.0.0
Última Atualização 2021-11-24
Data de Publicação 2021-10-22
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://sheetmonkey.io
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://docs.sheetmonkey.io/policies/privacy-policy
Idiomas Suportados 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:\/\/*\/*"
    ]
}