Skip to content

Commit

Permalink
manifest.json: remove "tabs" permission
Browse files Browse the repository at this point in the history
Not necessary anymore!

Closes #1276 .
  • Loading branch information
glacambre committed Dec 31, 2021
1 parent 095ad47 commit d316afe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ Firenvim currently requires the following permissions for the following reasons:
- [Access your data for all websites](https://support.mozilla.org/en-US/kb/permission-request-messages-firefox-extensions?as=u&utm_source=inproduct#w_access-your-data-for-all-websites): this is necessary in order to be able to append elements (= the neovim iframe) to the DOM.
- [Exchange messages with programs other than Firefox](https://support.mozilla.org/en-US/kb/permission-request-messages-firefox-extensions?as=u#w_exchange-messages-with-programs-other-than-firefox): this is necessary in order to be able to start neovim instances.
- [Access browser tabs](https://support.mozilla.org/en-US/kb/permission-request-messages-firefox-extensions?as=u#w_access-browser-tabs): This is required in order to find out what the current tab is, to update the Firenvim browser icon when moving to/from a tab where Firenvim has been disabled and to emulate browser keybindings that have been assigned to Firenvim.
## Configuring Firenvim
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"options_ui": {
"page": "options.html"
},
"permissions": [ "nativeMessaging", "storage", "tabs" ],
"permissions": [ "nativeMessaging", "storage" ],
"version": "replaced_at_compile_time",
"web_accessible_resources": [ "index.html", "ISSUE_TEMPLATE.md" ]
}

0 comments on commit d316afe

Please sign in to comment.