diff --git a/CHANGELOG.md b/CHANGELOG.md index b2c13c3..d64e880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ## [v1.10.1] - **FIXED**: Bookmark tagging autocomplete was partly broken. Fixed update of dependency. +- **CHANGED**: Moved the tips & tricks to markdown file and just link it, instead of random tips on startup. ## [v1.10.0] diff --git a/README.md b/README.md index f5027b6..d29745b 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,9 @@ The tags are considered when searching and can be used for navigation. The extension is very customizable (see [user options](#user-configuration)) and has a dark / light theme that is selected based on your system settings (see [prefers-color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme)). It's also very lightweight (< 150kb JavaScript, including dependencies). -For a list of recent changes, see [CHANGELOG.md](./CHANGELOG.md). +> 💡 Have a look at the [Tips & Tricks](./Tips.md) collection. + +> 🗎 For a list of recent changes, see [CHANGELOG.md](./CHANGELOG.md). ## Screenshots & Demo diff --git a/Tips.md b/Tips.md index e69de29..150644f 100644 --- a/Tips.md +++ b/Tips.md @@ -0,0 +1,71 @@ +# Tips & Tricks + +Customization: This extension can be customized via options in many ways. Please refer to the Documentation (link bottom right). + +
enableHelp: false
+
+searchStrategy: precise
+
+CTRL
+ Shift
+ .
. historyMaxItems: 1024
historyDaysAgo: 14
+
+Shift
or Alt
to open the result in the current tab.Ctrl
to open the result without closing the popup.Right Click
to copy URL of result into clipboard without closing the popup.
+
+ + [whole number]
to your bookmark title (before tags). Another Bookmark +10 #tag1
+
+ + [whole number]
to your bookmark title (before tags). Another Bookmark +10 #tag1
+
+#
: Only bookmarks with the tag will be returned~
: Only bookmarks within the folder will be returnedt
: Only tabs will be searched.b
: Only bookmarks will be searched.h
: Only history and tabs will be searched.s
: Only search engines will be proposed.chrome://downloads
.
+
+Ctrl+N
and Ctrl+J
to navigate search results up.Ctrl+P
and Ctrl+K
to navigate search results down.
diff --git a/cypress/e2e/search.cy.js b/cypress/e2e/search.cy.js
index 309505f..f924146 100644
--- a/cypress/e2e/search.cy.js
+++ b/cypress/e2e/search.cy.js
@@ -10,11 +10,6 @@ describe('Search View', () => {
it('completes the initializing phase without errors', () => {
cy.get('#results-loading').should('not.exist').checkNoErrors()
})
- it('starts with no results, but a random tip', () => {
- cy.get('#result-list').find('li.tip')
- cy.get('#result-list')
- .should('have.length', 1)
- })
})
describe('Result Navigation', () => {
diff --git a/popup/css/style.css b/popup/css/style.css
index 09251d7..31f4a51 100644
--- a/popup/css/style.css
+++ b/popup/css/style.css
@@ -259,7 +259,8 @@ code {
font-size: 14px;
}
#links a {
- color: #888;
+ color: #87aaca;
+ text-decoration: underline;
}
#links #result-counter {
float: right;
@@ -459,9 +460,6 @@ li.tip {
#options .help {
background: #000;
}
- #tips .tip {
- background: #000;
- }
.input,
.input:active,
.input:focus,
diff --git a/popup/index.html b/popup/index.html
index 49001b6..832052f 100644
--- a/popup/index.html
+++ b/popup/index.html
@@ -48,10 +48,14 @@
enableHelp: false
`,
-
- `Search Strategies: Switch between PRECISE (faster, exact) and FUZZY (slower, more results, fuzzy).searchStrategy: precise
`,
-
- `Keyboard Shortcut: Trigger the extension via keyboard. CTRL
+ Shift
+ .
. historyMaxItems: 1024
historyDaysAgo: 14
`,
-
- `Open selected results: By default, the extension will open the selected result in a new tab or switch to an existing tab if fitting.Shift
or Alt
to open the result in the current tab.Ctrl
to open the result without closing the popup.Right Click
to copy URL of result into clipboard without closing the popup.`,
-
- `Custom Bonus Scores: Append + [whole number]
to your bookmark title (before tags). Another Bookmark +10 #tag1
`,
-
- `Custom Bonus Scores: Append + [whole number]
to your bookmark title (before tags). Another Bookmark +10 #tag1
`,
-
- `Copy to Clipboard: Right click a result item to copy its URL to the clipboard.`,
-
- `Search Modes: Use search modes to be more selective.#
: Only bookmarks with the tag will be returned~
: Only bookmarks within the folder will be returnedt
: Only tabs will be searched.b
: Only bookmarks will be searched.h
: Only history and tabs will be searched.s
: Only search engines will be proposed.chrome://downloads
.`,
-
- `Keyboard Navigation: You can navigate result entries Emacs / Vim Style:Ctrl+N
and Ctrl+J
to navigate search results up.Ctrl+P
and Ctrl+K
to navigate search results down.`,
-]
diff --git a/popup/options.html b/popup/options.html
index 2e9c54a..62edb3b 100644
--- a/popup/options.html
+++ b/popup/options.html
@@ -56,10 +56,14 @@