Is it possible to open Chrome when I klick in Safari on a link? E.g. foo.bar.de
module.exports = {
defaultBrowser: "Safari",
handlers: [
{
match: [
"foo.bar.de*", // match google.com urls
],
browser: "Google Chrome"
}
]
}
With this config apparently it does not work :(