From c8d5c93fd44fcb169f4676cd4075dc5c15572734 Mon Sep 17 00:00:00 2001 From: rebloor Date: Sat, 30 May 2020 04:25:54 +1200 Subject: [PATCH] Permissions becoming optional remove version references (#643) Co-authored-by: Richard Bloor --- documentation/develop/request-the-right-permissions.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/documentation/develop/request-the-right-permissions.md b/documentation/develop/request-the-right-permissions.md index 9dbcb6376..bd5c3426a 100644 --- a/documentation/develop/request-the-right-permissions.md +++ b/documentation/develop/request-the-right-permissions.md @@ -109,7 +109,6 @@ Not all [permissions](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExte | `clipboardWrite` | Input data to the clipboard | | `clipboardRead` | Get data from the clipboard | | Other permissions: | -| `unlimitedStorage` (up to Firefox version 76) | Store unlimited amount of client-side data | | The manifest key ["devtools_page"](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/manifest.json/devtools_page) | Extend developer tools to access your data in open tabs | @@ -133,7 +132,7 @@ The following permissions don't get alerted to users: - `webRequest` - `webRequestBlocking` - Other permissions: - - `unlimitedStorage` (from Firefox version 77) + - `unlimitedStorage` - `activeTab` @@ -219,7 +218,6 @@ You can't request all the permissions available to `"permissions"` using optiona - `alarms` - `background` -- `browsingData` until Firefox 76. it becomes optional in Firefox 77 - `contentSettings` - `contextualIdentities` - `debugger` @@ -230,10 +228,7 @@ You can't request all the permissions available to `"permissions"` using optiona - `menus` - `nativeMessaging` - `pageCapture` -- `pkcs11` until Firefox 76. it becomes optional in Firefox 77 - `privacy` -- `proxy` until Firefox 76. it becomes optional in Firefox 77 -- `sessions` until Firefox 76. it becomes optional in Firefox 77 - `storage` - `theme`