MineGeekYT / Grant Form Helper

// ==UserScript==
// @name         Grant Form Helper
// @namespace    https://github.com/PikMike
// @version      0.1
// @description  Adds buttons to fill in the grant form
// @author       PikMike
// @include      https://docs.google.com/forms/d/e/1FAIpQLSc0Pc-JrstcjIYk0nwpgYX5xSPcXjq4TuOVcj-ZGzX-iqDohg/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';
  var fields = document.getElementsByClassName("quantumWizTextinputPaperinputInput");
  for (let i = 0; i < fields.length - 1; ++i) {
    fields[i].setAttribute("autocomplete", "on");
  }
})();