Skip to content

Commit bfd60a7

Browse files
author
Florian Kneist
committed
Fix typos and documenation
1 parent b515dad commit bfd60a7

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ In order to use Browserpass you must also install a [companion native messaging
1818
- [Organizing password store](#organizing-password-store)
1919
- [First steps in browser extension](#first-steps-in-browser-extension)
2020
- [Available keyboard shortcuts](#available-keyboard-shortcuts)
21+
- [Usage via right-click menu](#usage-via-right-click-menu)
2122
- [Password matching and sorting](#password-matching-and-sorting)
2223
- [Searching password entries](#searching-password-entries)
2324
- [OpenID authentication](#openid-authentication)
@@ -162,7 +163,7 @@ Note: If the cursor is located in the search input field, every shortcut that wo
162163
163164
### Usage via right-click menu
164165
165-
You can right-click anywhere a visited website and there will appear a menu with an option `browserpass - <n> entries`, where `n` is the number of entries that match the host of the visited website. When you select an entry, that one gets automatically filled in, equivalent to the behavior when an entry is selected from the browserpass popup. This can be helpful if you want to fill credentials in a browser popup window wighout extension buttons. Selecting single form fields and choosing values to fill in is currently not supported
166+
You can right-click anywhere a visited website and there will appear a menu with an option `Browserpass - <n> entries`, where `n` is the number of entries that match the host of the visited website. When you select an entry, that one gets automatically filled in, equivalent to the behavior when an entry is selected from the Browserpass popup. This can be helpful if you want to fill credentials in a browser popup window without extension buttons. Selecting single form fields and choosing values to fill in is currently not supported
166167
167168
![The right-click menu of browserpass](https://i.imgur.com/X2Q5LZn.png)
168169
@@ -306,7 +307,7 @@ Browserpass extension requests the following permissions:
306307
| `tabs` | To get URL of a given tab, used for example to set count of the matching passwords for a given tab |
307308
| `clipboardRead` | To ensure only copied credentials and not other content is cleared from the clipboard after 60 seconds |
308309
| `clipboardWrite` | For "Copy password" and "Copy username" functionality |
309-
| `contextMenus` | To create a context menu menu, also called right-click menu |
310+
| `contextMenus` | To create a context menu, also called right-click menu |
310311
| `nativeMessaging` | To allow communication with the native app |
311312
| `notifications` | To show browser notifications on install or update |
312313
| `webRequest` | For modal HTTP authentication |

src/background.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ function onExtensionInstalled(details) {
11641164
}
11651165

11661166
/**
1167-
* Create a context menu menu, also called right-click menu
1167+
* Create a context menu, also called right-click menu
11681168
*
11691169
* @since 3.8.0
11701170
*
@@ -1193,7 +1193,7 @@ async function createContextMenu() {
11931193

11941194
await chrome.contextMenus.create({
11951195
...menuEntryProps,
1196-
title: `browserpass - ${numberOfLoginsForThisHost} ${singularOrPlural}`,
1196+
title: `Browserpass - ${numberOfLoginsForThisHost} ${singularOrPlural}`,
11971197
id: menuEntryId,
11981198
});
11991199

0 commit comments

Comments
 (0)