-
-
Save negamorgan/36cc4bc10de16a22d054dbd68c3472a1 to your computer and use it in GitHub Desktop.
Open ClickUp links from anywhere in the desktop app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
defaultBrowser: "Choosy", | |
options: { hideIcon: true }, | |
rewrite: [ | |
{ | |
// Change the protocol to the one the desktop app recognizes. | |
match: finicky.matchHostnames(["app.clickup.com"]), | |
url: { protocol: "clickup" } | |
} | |
], | |
handlers: [ | |
{ | |
match: finicky.matchHostnames(["app.clickup.com"]), | |
browser: "com.clickup.desktop-app" | |
} | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment