开源软件名称(OpenSource Name):johnste/finicky开源软件地址(OpenSource Url):https://github.com/johnste/finicky开源编程语言(OpenSource Language):Swift 52.3%开源软件介绍(OpenSource Introduction):Finicky is a macOS application that allows you to set up rules that decide which browser is opened for every link or url. With Finicky as your default browser, you can tell it to open Facebook or Reddit in one browser, and Trello or LinkedIn in another.
Table of Contents
Installation
Example configuration// ~/.finicky.js
module.exports = {
defaultBrowser: "Google Chrome",
rewrite: [
{
// Redirect all urls to use https
match: ({ url }) => url.protocol === "http",
url: { protocol: "https" }
}
],
handlers: [
{
// Open apple.com and example.org urls in Safari
match: ["apple.com/*", "example.org/*"],
browser: "Safari"
},
{
// Open any url that includes the string "workplace" in Firefox
match: /workplace/,
browser: "Firefox"
},
{
// Open google.com and *.google.com urls in Google Chrome
match: [
"google.com/*", // match google.com urls
"*.google.com/*", // match google.com subdomains
],
browser: "Google Chrome"
}
]
}; See the documentation for all the features Finicky supports. DocumentationFinicky has extensive support for matching, rewriting and starting browsers or other application that handle urls. See the wiki for the full configuration documentation explaining all available, APIs and options as well as detail information on how to match on urls. Configuration tipsSee the wiki page for other configuration tips by users of Finicky. AlternativesIf you are looking for something that lets you pick the browser to activate in a graphical interface, check out Browserosaurus by Will Stone, an open source browser prompter for macOS. It works really well together with Finicky! Building Finicky from sourceIf you'd like to build Finicky from source, you can do so by installing Xcode, Xcode Command Line Tools, and yarn, and then running the following: # build the source
make
# run the compiled app
make run Current status of Finicky developmentI don't have time to work on Finicky actively, and that has been the case for a little bit over a year. I still use it every day and it works really well for my use cases. When I have time I try to respond to support requests on twitter and github. Don't expect any work on features, new releases, or even bug fixes on my part at this point. Unless things change a lot in my personal or professional life I won't have time to work on Finicky for the forseeable future. Looking for co-maintainersDo you want to help out with the development of Finicky? My time to spend to work on Finicky is very limited, and my limited experience with Swift and MacOS I feel is holding it back. If you are experienced in Swift and MacOS development and this sounds interesting to you please reach out to me, preferably on Twitter. IssuesBugsPlease file an issue for bugs, missing documentation, or unexpected behavior. Feature RequestsPlease file an issue to suggest new features. Vote on feature requests by adding
a |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论