Last active
June 24, 2018 19:24
-
-
Save chickdan/32d5c27406e31fc018a643948f33853c to your computer and use it in GitHub Desktop.
iOS URL Query Schemes
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" | |
//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