Skip to content

Instantly share code, notes, and snippets.

@negamorgan
Forked from TravisCarden/.finnicky.js
Last active June 18, 2024 14:31
Show Gist options
  • Save negamorgan/36cc4bc10de16a22d054dbd68c3472a1 to your computer and use it in GitHub Desktop.
Save negamorgan/36cc4bc10de16a22d054dbd68c3472a1 to your computer and use it in GitHub Desktop.
Open ClickUp links from anywhere in the desktop app
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