This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>LSApplicationQueriesSchemes</key> | |
<array> | |
<string>googlechrome</string> | |
<string>firefox</string> | |
<string>microsoft-edge</string> | |
<string>opera</string> | |
<string>dolphin</string> | |
<string>brave</string> | |
</array> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//MARK: Broswer query schemes | |
//To use: replace 'https' of a url with a scheme below | |
static let chrome = "googlechromes" | |
static let firefox = "firefox://open-url?url=https" | |
static let edge = "microsoft-edge" | |
static let opera = "opera://open-url?url=https" | |
static let dolphin = "dolphin" | |
static let brave = "brave" |