Skip to content

Instantly share code, notes, and snippets.

@TravisCarden
Last active July 8, 2024 14:45
Show Gist options
  • Save TravisCarden/d56225f8f2e18bf6cfd553b8a095d097 to your computer and use it in GitHub Desktop.
Save TravisCarden/d56225f8f2e18bf6cfd553b8a095d097 to your computer and use it in GitHub Desktop.
Open ClickUp links from anywhere in the desktop app
module.exports = {
rewrite: [
{
// Change the protocol to the one the desktop app recognizes.
match: finicky.matchHostnames(["app.clickup.com"]),
url: { protocol: "clickup" }
}
],
[
// Then route it to the ClickUp app.
{
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