Route links to specific browsers based on URL patterns and Javascript
~/.finicky.js
export default {
defaultBrowser: "Google Chrome",
handlers: [
{
// Open apple.com and example.com urls in Safari
match: ["apple.com*", "example.com*"],
browser: "Safari",
},
{
// Open any url that includes the string "workplace" in Firefox
match: "*workplace*",
browser: "Firefox",
}
],
};
Version | Downloads |
---|---|
- | - |