NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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(); }