Sheet Monkey - Form Builder for Sheets

Sheet Monkey - Form Builder for Sheets

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ]
}