mozilla-mobile / firefox-ios-open-in-client

Reference client for opening links in Firefox for iOS.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Opening links in Firefox for iOS

This open-source project provides support for opening links in Firefox for iOS. There are classes (for Objective-C and Swift), along with a sample project that uses them, available for reference and use.

Using OpenInFirefoxControllerSwift or OpenInFirefoxControllerObjC to open links

The OpenInFirefoxControllerSwift and OpenInFirefoxControllerObjC classes provide methods that handle the making of custom URI schemes, checking if Firefox is installed on the device and opening the URL in Firefox. We have provided Swift and Objective-C implementations of these classes to accommodate your language of choice.

Methods

  • isFirefoxInstalled: returns true if Firefox is installed
  • openInFirefox: opens the specified URL in Firefox; used with or without the following:

The Custom Firefox URL

Firefox uses a single URI scheme, firefox://. This scheme can accepts the following query parameter:

  • url: (required) the URL to open in Firefox.

For Example:

firefox://open-url?url=https://www.google.com/search%3Fq%3Dfirefox%2520for%2520ios

Walkthrough

  1. Download the class file in the language of your choice:
  1. Whitelist the Firefox URL scheme in Info.plist, under the LSApplicationQueriesSchemes key:
  • In depth example on how to do that here
  • If LSApplicationQueriesSchemes isn't already in your app's Info.plist, you can just manually add it
  • Add firefox to LSApplicationQueriesSchemes
  1. Call methods to open links in Firefox:

Contribute to Firefox for iOS

Learn more about how to contribute to this project: Firefox for iOS official repo

About

Reference client for opening links in Firefox for iOS.

License:Mozilla Public License 2.0


Languages

Language:Swift 56.6%Language:Objective-C 43.4%