Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface FinickyConfig

This represents the full .finicky.js module.exports object.

Example:

 module.exports = {
   defaultBrowser: "Google Chrome",
   options: {
     hideIcon: false
   },
   handlers: [{
     match: finicky.matchDomains("example.com'),
     browser: "Firefox"
   }]
 }

Index

Properties

defaultBrowser

defaultBrowser: Browser | BrowserFunction | Array<Browser | BrowserFunction>

The default browser or app to open for urls where no other handler matches.

Optional handlers

handlers: Handler[]

An array of Handlers to select which browser to open for urls

Optional options

options: undefined | object

Optional rewrite

rewrite: Rewriter[]

An array of Rewriters that can change the url being opened

Generated using TypeDoc