Skip to content

Instantly share code, notes, and snippets.

View chickdan's full-sized avatar
💻

Daniel Chick chickdan

💻
View GitHub Profile
@chickdan
chickdan / UrlSchems.plist
Created June 21, 2018 21:00
iOS plist for URL Query Schemes
<key>LSApplicationQueriesSchemes</key>
<array>
<string>googlechrome</string>
<string>firefox</string>
<string>microsoft-edge</string>
<string>opera</string>
<string>dolphin</string>
<string>brave</string>
</array>
@chickdan
chickdan / UrlSchemes.swift
Last active June 24, 2018 19:24
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"