diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-08 17:52:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 17:52:41 -0500 |
commit | 849e4fabe1dffc2851fcb338dae8400d6c8e46ca (patch) | |
tree | e49dbd86ec20a2a11fc8938b8f6a4e1a9c57501e /ext/manifest.json | |
parent | 008809e0e73665249b7b3dd7c14a1761aa06bd39 (diff) |
Native messaging optional permission (#1348)
* Refactor PermissionsToggleController to not require a setting
* Update nativeMessaging to be optional on Chrome
* Update parsing.enableMecabParser setting to request permissions
* Update permissions page to use PermissionsToggleController
* Update permissions documentation
* Disable toggle for permissions which are not optional
Diffstat (limited to 'ext/manifest.json')
-rw-r--r-- | ext/manifest.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/manifest.json b/ext/manifest.json index 5f9a29fd..54df2a89 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -78,12 +78,12 @@ "storage", "clipboardWrite", "unlimitedStorage", - "nativeMessaging", "webRequest", "webRequestBlocking" ], "optional_permissions": [ - "clipboardRead" + "clipboardRead", + "nativeMessaging" ], "commands": { "toggleTextScanning": { |