A
A
Alexey Voropaev2018-04-23 14:45:45
Trello
Alexey Voropaev, 2018-04-23 14:45:45

How to make a unique ID for a Trello card?

How to make a unique ID for a Trello card?
It is necessary that each card has its own ID and is shown in the title or block of the card. Does anyone know an extension that can help me?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
E
Evgeny Kalibrov, 2018-04-23
@boomrap

Every card in trello has a hidden element in the DOM: <span class="card-short-id hide">#21</span>
It contains the card's unique short id. The issue of opening this number has already been discussed here https://trello.com/c/PkIrgKzd/36-show-card-numbers , some users have written browser extensions for this purpose.
In essence, you just need to remove the hide class when the page loads:

window.onload = function(){
$(".card-short-id").append(" ").removeClass("hide");
};

You can hang this script on the plugin https://chrome.google.com/webstore/detail/custom-j...

A
Anton Kiselyov, 2018-05-01
@zamboga

Extensions:
https://chrome.google.com/webstore/detail/trellis... (I use this)
https://chrome.google.com/webstore/detail/trello-c...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question