Answers:
我遇到了同样的问题,并写了一些AppleScript来解决这个问题。您可以在这里找到该应用程序:https : //github.com/biafra23/Default-Fluids
您需要将此脚本设置为默认浏览器。这可以通过Safari来实现:菜单-> Safari->首选项->常规->默认Web浏览器
它包含以下部分:
if this_URL contains "facebook.com" then
tell application "/Applications/Fluids/facebook.app"
activate
open location this_URL
end tell
else if
...
else
-- default browser here
tell application "/Applications/Firefox.app"
activate
open location this_URL
end tell
end if
您需要根据使用AppleScript编辑器进行的设置来进行更改。
它不像choosyosx那样方便,但是它是免费的。
file:///
。因此,Dropbox上下文菜单功能和其他依赖于本地链接的事物可能会中断。
在这里开发Fluid。我唯一知道的方法是使用其他工具,例如Choosy或Browser Fairy(应用商店链接)。