chrome.permissions

Description: Use the chrome.permissions API to request declared optional permissions at run time rather than install time, so users understand why the permissions are needed and grant only those that are necessary.
Availability: Since Chrome 35.
Learn More: Declaring permissions

Implementing optional permissions

Step 1: Decide which permissions are required and which are optional

An extension can declare both required and optional permissions. In general, you should:

  • Use required permissions when they are needed for your extension’s basic functionality.
  • Use optional permissions when they are needed for optional features in your extension.

Advantages of required permissions:

  • Fewer prompts: An extension can prompt the user once to accept all permissions.
  • Simpler development: Required permissions are guaranteed to be present.

Advantages of optional permissions:

  • Better security: Extensions run with fewer permissions since users only enable permissions that are needed.
  • Better information for users: An extension can explain why it needs a particular permission when the user enables the relevant feature.
  • Easier upgrades: When you upgrade your extension, Chrome will not disable it for your users if the upgrade adds optional rather than required permissions.

Step 2: Declare optional permissions in the manifest

Declare optional permissions in your extension manifest with the optional_permissions key, using the same format as the permissions field:

      {
        "name": "My extension",
        ...
        "optional_permissions": [ "tabs", "http://www.google.com/" ],
        ...
      }
      

If you want to request hosts that you only discover at runtime, include "http://*/" and/or "https://*/" as an optional_permission. This lets you specify any origin in Permissions.origins as long as it has a matching scheme.

Permissions that can not be specified as optional

Most Chrome extension permissions can be specified as optional, with the following exceptions.

Permission Description
"debugger" The chrome.debugger API serves as an alternate transport for Chrome's remote debugging protocol .
"devtools" Allows extension to expand Chrome DevTools functionality.
"experimental" Canary and Dev channel only. Grants the extension access to chrome.experimental APIs.
"geolocation" Allows the extension to use the HTML5 geolocation API.
"mdns" Grants the extension access to the chrome.mdns API.
"proxy" Grants the extension access to the chrome.proxy API to manage Chrome's proxy settings.
"tts" The chrome.tts API plays synthesized text-to-speech (TTS).
"ttsEngine" The chrome.ttsEngine API implements a text-to-speech(TTS) engine using an extension.
"wallpaper" ChromeOS only. Use the chrome.wallpaper API change the ChromeOS wallpaper.

View Declare Permissions and Warn Users for further information on available permissions and their warnings.

Step 3: Request optional permissions

Request the permissions from within a user gesture using permissions.request():

      document.querySelector('#my-button').addEventListener('click', function(event) {
        // Permissions must be requested from inside a user gesture, like a button's
        // click handler.
        chrome.permissions.request({
          permissions: ['tabs'],
          origins: ['http://www.google.com/']
        }, function(granted) {
          // The callback argument will be true if the user granted the permissions.
          if (granted) {
            doSomething();
          } else {
            doSomethingElse();
          }
        });
      });
      

Chrome prompts the user if adding the permissions results in different warning messages than the user has already seen and accepted. For example, the previous code might result in a prompt like this:

example permission confirmation prompt

Step 4: Check the extension's current permissions

To check whether your extension has a specific permission or set of permissions, use permission.contains():

      chrome.permissions.contains({
        permissions: ['tabs'],
        origins: ['http://www.google.com/']
      }, function(result) {
        if (result) {
          // The extension has the permissions.
        } else {
          // The extension doesn't have the permissions.
        }
      });
      

Step 5: Remove the permissions

You should remove permissions when you no longer need them. After a permission has been removed, calling permissions.request() usually adds the permission back without prompting the user.

      chrome.permissions.remove({
        permissions: ['tabs'],
        origins: ['http://www.google.com/']
      }, function(removed) {
        if (removed) {
          // The permissions have been removed.
        } else {
          // The permissions have not been removed (e.g., you tried to remove
          // required permissions).
        }
      });
      

Summary

Types
Permissions
Methods
getAll chrome.permissions.getAll(function callback)
contains chrome.permissions.contains( Permissions permissions, function callback)
request chrome.permissions.request( Permissions permissions, function callback)
remove chrome.permissions.remove( Permissions permissions, function callback)
Events
onAdded
onRemoved

Types

Permissions

properties
array of string (optional) permissions

List of named permissions (does not include hosts or origins).

array of string (optional) origins

The list of host permissions, including those specified in the optional_permissions or permissions keys in the manifest, and those associated with Content Scripts.

Methods

getAll

chrome.permissions.getAll(function callback)

Gets the extension's current set of permissions.

Parameters
function callback

The callback parameter should be a function that looks like this:

function( Permissions permissions) {...};
Permissions permissions

The extension's active permissions. Note that the origins property will contain granted origins from those specified in the permissions and optional_permissions keys in the manifest and those associated with Content Scripts.

contains

chrome.permissions.contains( Permissions permissions, function callback)

Checks if the extension has the specified permissions.

Parameters
Permissions permissions
function callback

The callback parameter should be a function that looks like this:

function(boolean result) {...};
boolean result

True if the extension has the specified permissions. If an origin is specified as both an optional permission and a content script match pattern, this will return false unless both permissions are granted.

request

chrome.permissions.request( Permissions permissions, function callback)

Requests access to the specified permissions, displaying a prompt to the user if necessary. These permissions must either be defined in the optional_permissions field of the manifest or be required permissions that were withheld by the user. Paths on origin patterns will be ignored. You can request subsets of optional origin permissions; for example, if you specify *://*/* in the optional_permissions section of the manifest, you can request http://example.com/. If there are any problems requesting the permissions, runtime.lastError will be set.

Parameters
Permissions permissions
function (optional) callback

If you specify the callback parameter, it should be a function that looks like this:

function(boolean granted) {...};
boolean granted

True if the user granted the specified permissions.

remove

chrome.permissions.remove( Permissions permissions, function callback)

Removes access to the specified permissions. If there are any problems removing the permissions, runtime.lastError will be set.

Parameters
Permissions permissions
function (optional) callback

If you specify the callback parameter, it should be a function that looks like this:

function(boolean removed) {...};
boolean removed

True if the permissions were removed.

Events

onAdded

Fired when the extension acquires new permissions.

addListener

chrome.permissions.onAdded.addListener(function callback)
Parameters
function callback

The callback parameter should be a function that looks like this:

function( Permissions permissions) {...};
Permissions permissions

The newly acquired permissions.

onRemoved

Fired when access to permissions has been removed from the extension.

addListener

chrome.permissions.onRemoved.addListener(function callback)
Parameters
function callback

The callback parameter should be a function that looks like this:

function( Permissions permissions) {...};
Permissions permissions

The permissions that have been removed.