Forcing Trello URLs to Default to Desktop App

Matt Pitta September 21, 2017

Has anyone found a way to force Trello URLs to Default to Desktop App?  E.G. When you’re in email, or Slack, and you click on a Trello link, it would open in the Trello app vs the browser default

25 answers

1 accepted

4 votes
Answer accepted
xeho91 June 11, 2020

This is really disappointing to see this question/feedback was asked in 2017, and by the 2020 year there was no progress about this case.

Janson Chah August 16, 2020

Thanks to this answer I thought about using the Redirector chrome extension with this.

https://chrome.google.com/webstore/detail/redirector/ocgpenflpmgnfapjedencafcfakcekcd

My rule looks like this, feel free to save as json and Import (or just copy paste from within):

{
"createdBy": "Redirector v3.5.3",
"createdAt": "2020-08-17T02:24:22.784Z",
"redirects": [
{
"description": "Trello to Trello app",
"exampleUrl": "https://trello.com/b/hb2G23rR/sprint-2-5-mvp-4-aug-17-aug",
"exampleResult": "trello://trello.com/b/hb2G23rR/sprint-2-5-mvp-4-aug-17-aug",
"error": null,
"includePattern": "https://trello.com/*",
"excludePattern": "",
"patternDesc": "Trello to Trello app",
"redirectUrl": "trello://trello.com/$1",
"patternType": "W",
"processMatches": "noProcessing",
"disabled": false,
"grouped": false,
"appliesTo": [
 
Like # people like this
Alex Jahraus November 19, 2020

Thank you very much for this, @Janson Chah – it works!

I’m using it now with Redirector for Firefox

Like Philip Cross likes this
Jonah March 10, 2021

Anyone successful using Redirector on Win10 Firefox want to share how they did it?

I was able to get the add-on, set the rule, but Firefox lands at "Problem loading" page that says, "This address wasn't understood" now when attempting to open any Trello link, instead of resolving properly. The error page also says, "You might need to install other software to open this address."

Does Firefox...simply refuse to allow another app to open via URL?

Exceptions at least include Zoom, but Firefox options show a particular protocol for Zoom; I'm unable to add any manually.

Temple Pyakuryal May 2, 2022

+1 Works like a charm

Marcia Ahern September 12, 2022

Thanks for this work around - works perfectly :)

13 votes
Mike
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 22, 2017

Hi Matt,

 

This isn't currently possible, but would definitely be nice, I agree! I'll pass the message on to our developers!

Pål Are Sætre September 27, 2017

This is a potential show stopper for using the Trello desktop app. I've been using the app for a few days now, but you don't make it easy for me when these links still send me back to the browser all the time.

This feature would be much appreciated! 

jasonsawtelle September 29, 2017

The desktop app is rendered useless because I receive Trello links from team members via Slack and they only open in the browser.

Like # people like this
Beah October 12, 2017

Same here. This is a feature that would really make the difference to use the Trello app.

 

At least using the URL, searching for it in the app and finding it would help!

mk November 13, 2018

it would be pretty hype to use the trello://... format, at least on Mac

+1

Like # people like this
3 votes
Matt Blessed February 3, 2020

Reviewed the (`asr`) code-base. To open a Trello link with the (Mac) Trello Desktop App do the following:

`https://trello.com/...` => `trello://trello.com/...`

Change the `http` or `https` => `trello` for any short or long Trello card/board link.

 

enjoy 🎉

JRS March 18, 2020

I confirm this works!! 

Like Janson Chah likes this
2 votes
Steffen_Karspeck November 1, 2017

+1 (btw paws for trello the former trello.app for mac was able to do this via a chrome extension)

1 vote
Weverton Naves August 14, 2020

+1 but I don't think it will happen as it passed 3 years already since this post :(

1 vote
Gabe Worden April 30, 2018

+1  I need this as well

1 vote
jaza_tom January 22, 2018

+1  Also signed up to vote for this

1 vote
Seph Soliman January 19, 2018

Bump. +1. it's been almost 4 months since this was posted. Would really love to use the desktop app but really can't. Should have been part of the MVP.

1 vote
Ed Fricker December 4, 2017

+1, I signed up here just to vote on this!

1 vote
Sam Baldwin October 23, 2017

+1

0 votes
Lars Edman
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 25, 2023

+1

AndrewW October 26, 2023

Welcome to the glacial world of Trello / Atlassian responding to customer needs!

0 votes
AndrewW August 11, 2022

+1

Seriously, this bug has STILL not been fixed?

Speaks volumes...

0 votes
Hendri Salim January 5, 2021

+1

0 votes
Torbjörn Hedberg August 10, 2020

+1

0 votes
Bill Tschida May 15, 2020

+1

0 votes
terb May 15, 2020

+1

0 votes
Anthill Engineering April 23, 2020

+1

0 votes
Beau Griffith January 2, 2019

Definitely would be a help. Otherwise, what's the point of using the desktop app? In the meantime is there any workaround for non-programmers?

0 votes
Dimitris Mitsas December 12, 2018

I know it's kinda old, but have a look at AutoHotKey. 

This is the script I am using. I right click, copy link on every slack link. The script checks for https://trello.com in the clipboard and if it finds it then it activates the trello application and CtrlAltV (paste and go) the link. That gets you to the card you want, within the application.

 

#SingleInstance force
#WinActivateForce
#Persistent
OnClipboardChange("ClipChanged")
return
ClipChanged(Type) {
copyOfClip = %clipboard%
var1 := "https://trello.com"
foundPos := InStr(copyOfClip,var1)
if (foundPos >0)
{
Processname=Trello.exe
Process, Exist, %Processname%

If !ErrorLevel
{
return
}
pid := ErrorLevel
WinActivate, % "ahk_pid " pid
Sleep, 50
Send {Ctrl down}{Alt down}v
Sleep, 50
Send {Ctrl up}{Alt up}
}

}

Hope it helps.

Bill Tschida May 15, 2020

This was actually pretty easy to setup and works!!

Simply download AutoHotKey then:

  1. Right-Click on your desktop.
  2. Find "New" in the menu.
  3. Click "AutoHotkey Script" inside the "New" menu.
  4. Give the script a new name. ...
  5. Find the newly created file on your desktop and right-click it.
  6. Click "Edit Script".
  7. A window should have popped up, probably Notepad. ...
  8. Save the File.

After that double click on the file on your desktop and it's on!

terb May 15, 2020

Hi, thanks, but this solution fits only for windows, may be you know the same for mac?

Bill Tschida May 16, 2020

I don't, sorry. 

0 votes
Travis Meyer November 14, 2018

+1, as a dev facing a similar problem, also curious how you end up solving it (which hopefully happens soon <3)

0 votes
patbegg October 18, 2018

+1, it's a must

0 votes
Fernando Zapico October 16, 2018

+10000

0 votes
Finbarr Taylor May 30, 2018

+1 seriously

0 votes
Rick Johnston April 13, 2018

+1

0 votes
dcc635 February 6, 2018

+1 Halting use of the desktop app until this is added. Which sucks since the separation of Trello and Chrome is way better for alt-tabbing. Plus all the other benefits of the desktop app that Trello came up with when they decided to build it.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events