短号码是处理卡牌的非常有用的句柄(在讨论,跟踪等方面)。 Trello有与卡相关的数字,但由于某些原因他们不会显示它们。如何在Trello中显示卡号?
答案 0 :(得分:1)
事实证明,卡号实际上是在Trello的HTML中,但隐藏了没有我可以找到的设置来显示它们。有扩展可以做到这一点,但我不想给我的东西扩展访问只是为了做一个这样的简单的事情。所以我用jQuery做了:
javascript:(function(){
$('span.card-short-id').removeClass('hide');
$('span.card-short-id').css('padding-right','5px');
$('span.card-short-id').css('font-weight','bold');
$('span.card-short-id').css('font-size','16px');
})()
将其粘贴到浏览器书签的网址字段中。
如果需要,这里没有空格也是如此(虽然Chrome处理的空白很好):
javascript:(function(){$('span.card-short-id').removeClass('hide'); $('span.card-short-id').css('padding-right','5px');$('span.card-short-id').css('font-weight','bold');$('span.card-short-id').css('font-size','16px');})()
答案 1 :(得分:0)
您可以使用此处的解决方案。它是免费的,就像一个魅力: https://youtu.be/BEwRtcOXkPg