Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change keyword to findplus #407

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ When the extension popup is open, there are a number of keyboard shortcuts you c
| <kbd>CTRL</kbd>+<kbd>↵</kbd> or <kbd>ESC</kbd> | <kbd>^</kbd>+<kbd>↵</kbd> or <kbd>ESC</kbd> | Close the extension popup |

## Omnibox Support
In version 1.4.0, we introduced omnibox support! This allows you to highlight text on a page without even opening the extension. To use this feature, type `find` in your browser's address bar, press <kbd>␣</kbd> or <kbd>⇥</kbd>, and then enter a regular expression. Occurrences of the regular expression will become highlighted on the page as you type.
In version 1.4.0, we introduced omnibox support! This allows you to highlight text on a page without even opening the extension. To use this feature, type `findplus` in your browser's address bar, press <kbd>␣</kbd> or <kbd>⇥</kbd>, and then enter a regular expression. Occurrences of the regular expression will become highlighted on the page as you type.

Pressing `ENTER` will leave the highlights in the page. To remove the highlights, simply refresh the page. If you don't want to leave the highlights in the page, just erase the text entered in the address bar.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ <h3>Result in Clipboard</h3>
<div class="content-inner">
<p>You can also use the omnibox to highlight occurrences of a query in the page, rather than opening the
browser extension popup.</p>
<p>To use this feature, type "find" in your browser's address bar, press space, and then enter a regular
<p>To use this feature, type "findplus" in your browser's address bar, press space, and then enter a regular
expression. Occurrences of the regular expression will become highlighted on the page as you
type.</p>
<p>Pressing <kbd>ENTER</kbd> will leave the highlights in the page. To remove the highlights, simply
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
]
}],
"omnibox": {
"keyword" : "find"
"keyword" : "findplus"
},
"commands": {
"_execute_browser_action": {
Expand Down
2 changes: 1 addition & 1 deletion manifest_firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
]
}],
"omnibox": {
"keyword" : "find"
"keyword" : "findplus"
},
"commands": {
"_execute_browser_action": {
Expand Down