--- tags: tools --- Trello Stand-up Tool bookmarklet ==== [Install the Firefox Add-on version](https://addons.mozilla.org/firefox/addon/daily-scrum-tool-for-trello/) ![](https://i.imgur.com/GaRGoyv.jpg) v.20190730 (not updated anymore) 1. Create a bookmark on your bookmark toolbar, name it "Trello Standup" or whatever you like, then paste these code into the URL field. ``` javascript:$("div.board-header-btns").has("div.board-header-facepile")[0].innerHTML='<button id="trelloDailyScrum_btn" class="_2ZNy4w8Nfa58d1" style="padding: 3px; height: auto; display: inline-block;">Wait...</button>';var trelloDailyScrum_next,trelloDailyScrum_thelist,trelloDailyScrum_btn=$("button#trelloDailyScrum_btn")[0];function trelloDailyScrum_init(){trelloDailyScrum_next=0,trelloDailyScrum_btn.innerHTML="Stand up!",$("a.list-card").fadeIn()}function trelloDailyScrum_format(t,l){return"<strong>Now: "+t+"</strong><br><small style='font-weight:normal'>Click "+(""==l?"to end the meeting":"for next: "+l)+"</small>"}function trelloDailyScrum_getStandupMembers(){var t=new Array;return $("textarea[aria-label='Stand-up Members']").parent().parent().find("div[data-idmem]").each(function(){var l={name:"",id:""};l.name=this.parentNode.parentNode.querySelector("span.list-card-title").textContent.match(/^#\d+(.+)/)[1],l.id=this.getAttribute("data-idmem"),t.push(l)}),t}trelloDailyScrum_btn.addEventListener("click",function(){trelloDailyScrum_thelist=trelloDailyScrum_getStandupMembers(),trelloDailyScrum_next!=trelloDailyScrum_thelist.length?($("a.list-card").fadeOut(500),$("a.list-card").has("div.member[data-idmem='"+trelloDailyScrum_thelist[trelloDailyScrum_next].id+"']").fadeIn(500),nowName=trelloDailyScrum_thelist[trelloDailyScrum_next].name,nextName=++trelloDailyScrum_next==trelloDailyScrum_thelist.length?"":trelloDailyScrum_thelist[trelloDailyScrum_next].name,trelloDailyScrum_btn.innerHTML=trelloDailyScrum_format(nowName,nextName)):trelloDailyScrum_init()}),trelloDailyScrum_init(); ``` 2. Create a "Stand-up Members" list in your Trello board. 3. Create a card in the list for each member in your team, assign members to their own card. (**Name the cards with their id / name.**) ![](https://i.imgur.com/1zcowRk.png) 4. Arrange the cards (members) as the ordering you want in the Stand-up meeting. 5. Click the bookmark 6. Click the "Stand up!" button on your Trello board. ![](https://i.imgur.com/STlKvxZ.png) 7. Only the cards assigned to the first member show up, you can click the button again to show cards assigned to next member. ![](https://i.imgur.com/PgQ6bup.png) That's it. License: MIT. ---- Change log: * 2019/07/30: Tweak button style * 2019/05/21: Trello changes its code so we need an update for it.