Sheet Monkey - Form Builder for Sheets

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

Co je Sheet Monkey - Form Builder for Sheets?

Sheet Monkey - Form Builder for Sheets je rozšíření Chrome vyvinuté https://sheetmonkey.io, a jeho hlavní funkcí je „A form builder for Google Sheets that allows you to embed forms on any site with any style.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Sheet Monkey - Form Builder for Sheets

Stáhněte si soubory rozšíření Sheet Monkey - Form Builder for Sheets ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Sheet Monkey - Form Builder for Sheets Sheet Monkey - Form Builder for Sheets
ID dnohamccnpiapcadmokckehgebdednko
Oficiální URL https://chromewebstore.google.com/detail/sheet-monkey-form-builder/dnohamccnpiapcadmokckehgebdednko
Popis A form builder for Google Sheets that allows you to embed forms on any site with any style.
Velikost souboru 1.41 MB
Počet instalací 1,717
Aktuální Verze 1.0.0
Poslední Aktualizace 2021-11-24
Datum Vydání 2021-10-22
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://sheetmonkey.io
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://docs.sheetmonkey.io/policies/privacy-policy
Podporované Jazyky 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:\/\/*\/*"
    ]
}