Asana Expand Projects

automatically expand the project list in the asana left sidebar

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

  1. // ==UserScript==
  2. // @name Asana Expand Projects
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description automatically expand the project list in the asana left sidebar
  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 tid = setInterval(showprojects, 1000);
  14.  
  15. function showprojects() {
  16. $("a.navigationDockProjectGroupView-more").trigger('click');
  17. }
  18.  
  19. setTimeout(function(){ clearInterval(tid);} , 10000);