diff options
author | ManeraKai <manerakai@protonmail.com> | 2023-05-03 09:52:38 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2023-05-03 09:52:38 +0300 |
commit | 771c94a0c8b81df039361254f28b2bad286a49ff (patch) | |
tree | 1c632d513aa749841f64613ec8c0b7ddb32598ef | |
parent | Cleaned README, will re-add info in the website. (diff) | |
download | libredirect-771c94a0c8b81df039361254f28b2bad286a49ff.zip |
Found a way to make 'bookmarks' optional, so made it so https://github.com/libredirect/browser_extension/issues/688
-rw-r--r-- | src/manifest.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/manifest.json b/src/manifest.json index bd483a3b..185a5231 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -25,9 +25,11 @@ "storage", "clipboardWrite", "contextMenus", - "bookmarks", "<all_urls>" ], + "optional_permissions": [ + "bookmarks" + ], "browser_action": { "default_title": "__MSG_extensionName__", "browser_style": false, |