Asana Expand Workspaces

automatically expand the workspaces list in the top right dropdown

当前为 2016-01-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Asana Expand Workspaces
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description automatically expand the workspaces list in the top right dropdown
  6. // @author Matija Erceg
  7. // @match https://app.asana.com/*
  8. // @grant none
  9. // @run-at document-end
  10. // @require http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.8.0.js
  11. // ==/UserScript==
  12.  
  13. var style = $('<style>.menuScrollableSection--large { max-height: 400px!important; }</style>');
  14. $('html > head').append(style);