Google Forms Autocomplete

Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Forms Autocomplete",
  "description": "Extension that enables the autocomplete system on Google Forms",
  "version": "1.0.0.0",
  "icons": {
    "16": "/images/google-forms-16.png",
    "48": "/images/google-forms-48.png",
    "128": "/images/google-forms-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/forms/*"
      ],
      "js": [
        "/src/script.js"
      ],
      "css": [
        "/src/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "resources": [
        "/src/classes.js"
      ]
    }
  ],
  "action": {
    "default_popup": "/src/page/index.html",
    "default_title": "Google Forms Autocomplete",
    "default_icon": {
      "16": "/images/google-forms-16.png",
      "48": "/images/google-forms-48.png",
      "128": "/images/google-forms-128.png"
    }
  },
  "permissions": [
    "storage"
  ]
}