permissions.getAll()
Retrieve a permissions.Permissions
object containing all the permissions currently granted to the extension.
This is an asynchronous function that returns a Promise
.
Syntax
var gettingAll = browser.permissions.getAll()
Parameters
None.
Return value
A Promise
that will be fulfilled with a permissions.Permissions
object containing all the permissions currently granted to the extension. This includes all permissions the extension has listed in the permissions
key, and any permissions listed in optional_permissions
that the extension has been granted by calling permissions.request()
.
Browser compatibility
Report problems with this compatibility data on GitHubwebextensions-desktop | webextensions-mobile | |||||
---|---|---|---|---|---|---|
getAll | ChromeFull supportYes | EdgeFull support79 | FirefoxFull support55 | OperaFull supportYes | SafariFull support14 | Firefox for AndroidFull support55 |
Legend
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Examples
// Extension permissions are:
// "webRequest", "tabs", "*://*.mozilla.org/*"
browser.permissions.getAll().then((result) => {
console.log(result.permissions); // [ "webRequest", "tabs" ]
console.log(result.origins) // [ "*://*.mozilla.org/*" ]
});
Example extensions
Acknowledgements
This API is based on Chromium's chrome.permissions
API.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.