Skip to content

Instantly share code, notes, and snippets.

@chickdan
Last active June 24, 2018 19:24
Show Gist options
  • Save chickdan/32d5c27406e31fc018a643948f33853c to your computer and use it in GitHub Desktop.
Save chickdan/32d5c27406e31fc018a643948f33853c to your computer and use it in GitHub Desktop.
iOS URL Query Schemes
//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"
//MARK: Social Media query schemes
static let facebook = "fb"
static let instagram = "instagram"
static let twitter = "twitter"
static let snapchat = "snapchat"
static let reddit = "reddit/"
static let apollo = "apollo"
//MARK: Entertainment query schemes
static let youtube = "youtube"
static let twitch = "twitch"
static let twitchAlternative = "ttv"
//MARK: Communication query schemes
static let whatsapp = "whatsapp"
static let signal = "sgnl"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment