simon / Quartzy request expand grant

// ==UserScript==
// @name         Quartzy request expand grant
// @namespace    script@simon
// @version      0.2
// @description  Automatically expands request form in Quartzy to show grant field
// @author       Simon, 08/2017
// @match        https://app.quartzy.com/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @require      https://gist.github.com/raw/2625891/waitForKeyElements.js
// ==/UserScript==

waitForKeyElements ('.add-more', handleElement);

// click element when found
function handleElement(element) {
    element.click();
}