Add user-visible descriptions to permission table

This commit is contained in:
Matt Hensman
2021-05-05 13:14:14 +01:00
committed by GitHub
parent 4bfe2b9306
commit c45a45616a

View File

@@ -2,14 +2,14 @@
## WebExtension ## WebExtension
### Permissions ### Permissions
|Permission|Usage| |Permission|Description|Usage|
|--|--| |--|--|--|
|`browser.history`|When opening receiver selection popup windows, the history log is polluted unless these entries are removed.| |`browser.history`|Access browsing history|When opening receiver selection popup windows, the history log is polluted unless these entries are removed.|
|`menus`|Display context menus for casting on pages/media, and whitelist menus on the toolbar button.| |`menus`|N/A|Display context menus for casting on pages/media, and whitelist menus on the toolbar button.|
|`nativeMessaging`|Allows communciation with the bridge.| |`nativeMessaging`|Exchange messages with programs other than Firefox|Allows communciation with the bridge.|
|`notifications`|Show notifications if a bridge issue is found on startup.| |`notifications`|Display notifications to you|Show notifications if a bridge issue is found on startup.|
|`storage`|Store options data.| |`storage`|N/A|Store options data.|
|`tabs`|Execute scripts within a sender application's tab content script context(possibly unnecessary due to host permissions).| |`tabs`|Access browser tabs|Execute scripts within a sender application's tab content script context (possibly unnecessary due to host permissions).|
|`webNavigation`|Get URL of frame to determine available cast media types.| |`webNavigation`|Access browser activity during navigation|Get URL of frame to determine available cast media types.|
|`webRequest`|Intercept and redirect Cast SDK requests.| |`webRequest`|N/A|Intercept and redirect Cast SDK requests.|
|`<all_urls>`|Wildcard host permission (may want to switch to optional host permissions).| |`<all_urls>`|Acess your data for all websites|Wildcard host permission (may want to switch to optional host permissions).|