Skip to content

Commit

Permalink
Permissions becoming optional remove version references (#643)
Browse files Browse the repository at this point in the history
Co-authored-by: Richard Bloor <[email protected]>
  • Loading branch information
rebloor and Richard Bloor authored May 29, 2020
1 parent 808e8c8 commit c8d5c93
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions documentation/develop/request-the-right-permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

</div>
Expand All @@ -133,7 +132,7 @@ The following permissions don't get alerted to users:
- `webRequest`
- `webRequestBlocking`
- Other permissions:
- `unlimitedStorage` (from Firefox version 77)
- `unlimitedStorage`
- `activeTab`

</div>
Expand Down Expand Up @@ -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`
Expand All @@ -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`

Expand Down

0 comments on commit c8d5c93

Please sign in to comment.