SDA - Auto Form

SDA - Auto Form

Using this extension helps you copy your answers from a completed Google Form and paste it into a different one in no time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SDA - Auto Form",
  "description": "Using this extension helps you copy your answers from a completed Google Form and paste it into a different one in no time.",
  "version": "4.0.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "./js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./scripts/functions.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://docs.google.com/forms/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/sign-form-16.png",
      "32": "/images/sign-form-32.png",
      "64": "/images/sign-form-64.png",
      "128": "/images/sign-form-128.png"
    }
  },
  "icons": {
    "16": "/images/sign-form-16.png",
    "32": "/images/sign-form-32.png",
    "64": "/images/sign-form-64.png",
    "128": "/images/sign-form-128.png"
  }
}