Asana Expand Workspaces

automatically expand the workspaces list in the top right dropdown

As of 2016-01-13. See the latest version.

// ==UserScript==
// @name         Asana Expand Workspaces
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  automatically expand the workspaces list in the top right dropdown
// @author       Matija Erceg
// @match        https://app.asana.com/*
// @grant        none
// @run-at       document-end
// @require      http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.8.0.js
// ==/UserScript==

var style = $('<style>.menuScrollableSection--large { max-height: 400px!important; }</style>');
$('html > head').append(style);