Documentation Archive

Developer

App Extension Programming Guide

On This Page

Content Blocker

In iOS, a Content Blocker extension customizes the way Safari handles your content. The extension tailors your content by hiding elements, blocking loads, and stripping cookies from Safari requests.

Using a Content Blocker extension, you provide Safari with content-blocking rules that specify how Safari treats content such as images, scripts, and pop-up windows. Your rules can hide Safari-downloaded content or prevent Safari from requesting specific content from the server. By reducing the amount of content Safari requests, your extension can reduce the amount of time required to load pages. When you block content from loading, you reduce Safari’s memory usage and improve Safari’s performance.

In addition to blocking unwanted content, a Content Blocker extension protects privacy. For example, the extension doesn’t have access to users’ browsing activity and it can’t report activity to your app. By blocking cookies and scripts, the extension reduces the information that Safari provides to other websites.

A Content Blocker in Action

Your Content Blocker extension customizes Safari content by providing content-blocking rules. Rules use specific attributes to achieve your desired result. For example, a rule with "type": "block" and "resource-type": ["image"] prevents Safari from requesting images (Listing 7-1).

Listing 7-1Content-blocking rule to block an image
  1. [{
  2. "trigger": {
  3. "url-filter": "webkit.org",
  4. "resource-type": ["image"]
  5. },
  6. "action": {
  7. "selector": "#logo",
  8. "type": "block"
  9. }
  10. }]

Safari follows this rule—that is, it loads content and omits any images that match the rule. The image highlighted in Figure 7-1 has the rule-specified URL, resource type, and selector.

Figure 7-1Before blocking the image image: Art/ContentBlocker_withLogo_2x.png

In Figure 7-2, Safari omits that image and loads the other page content.

Figure 7-2After blocking the image image: Art/ContentBlocker_hiddenLogo_2x.png

The same rule with "resource-type": ["image", "script"] would prevent requests for scripts as well as images.

Customizing Content-Blocking Rules

The Content Blocker App Extension template in Xcode contains code to send your content-blocking rules to Safari in a JSON format. The JSON consists of an array of rules (triggers and actions) for blocking specified content. Safari converts the JSON to bytecode, which it applies efficiently to all resource loads without leaking information about the user’s browsing back to the app extension. Just edit the JSON file in the template to provide your own triggers and actions. For more information on creating content-blocking rules, see Safari Content-Blocking Rules Reference.

You can change content-blocking rules while your app is running. Your app's UI can offer users customization options such as choosing types of content to block and choosing whether to ignore a block list on a certain websites. Use the SFContentBlockerManager class to reload the content-blocking rules if the rules change while the extension is running.

Use the Xcode Content Blocker Extension Template

The Xcode Content Blocker Extension template provides default source files for the principal view controller class, an Info.plist file, and a storyboard file. Figure 7-3 shows the new extension template selected in Xcode.

Figure 7-3Xcode panel to add an iOS extension image: Art/XcodeContentBlockerExtension_2x.png

By default, the Content Blocker template supplies the following Info.plist keys and values:

  1. <key>NSExtension</key>
  2. <dict>
  3. <key>NSExtensionPointIdentifier</key>
  4. <string>com.apple.Safari.content-blocker</string>
  5. <key>NSExtensionPrincipalClass</key>
  6. <string>$(PRODUCT_MODULE_NAME).ActionRequestHandler</string>
  7. </dict>

These are the only keys and values you need in order to create your Content Blocker extension.

Content Blocker Errors

The most common errors in Content Blockers are caused by rule-formatting errors. The rules should be formatted as objects as shown in Safari Content-Blocking Rules Reference. Missing commas, braces, and brackets will prevent Safari from compiling content-blocking rules.

You can use Safari Web Inspector to debug your Content Blocker Extension. Read Safari Web Inspector Guide for more information.