Bookmark Search

Search for bookmarks from the omnibox.

What is Bookmark Search?

Bookmark Search is a Chrome extension developed by Alvin Wong, and its main feature is "Search for bookmarks from the omnibox.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download Bookmark Search Extension CRX File

Download Bookmark Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Search for bookmarks and quickly navigate to them using the omnibox (the address bar) easily!

Type the keyword "bm", which is shortened from the word "bookmark", tab/space and start typing!

It can support JavaScript bookmarklets by enabling the corresponding option in the options page.

This extension is open-sourced, available at GitHub: https://github.com/alvinhochun/chrome-bookmark-search

Changelog
========
== 1.4.3 (2018-08-19) ==
- Fix the bookmark page search link on more recent Chrome versions. (Thanks nbegley for the patch.)
- Fix a typo. (Thanks nbegley for the patch.)

== 1.4.2.1 (2013-08-09) ==
- Pressing arrow keys or switching windows could cause automatic matches (first match item) to be forgotten. Some code has been modified to prevent this from happening. (Thanks northtea for pointing it out)

== 1.4.2 (2013-07-11) ==
- JavaScript bookmarklets now requires a lesser permission. If you had enabled JavaScript bookmarklets before, you'll need to re-enable it.
- You may now choose where bookmarks are opened with the keyboard. The option is available in the options page. With this option, you can open bookmarks on a new foreground tab by pressing Alt + Enter, or on a new background tab by clicking on an item with the middle mouse button.
- Fixed a minor bug which sometimes causes the wrong page to be opened.

== 1.4.1 (2013-03-07) ==
- Made the searching algorithm selection option more clearer.
- Added a page to test different searching algorithm.

== 1.4 (2013-02-27) ==
- Implemented a new searching and sorting algorithm which should give better and more useful results in general.

== 1.3.4 (2013-02-20) ==
- Removed an optional permission which is no longer needed.
- Changed the way of informing version updated.

== 1.3.3 (2013-02-19) ==
- Changed the bookmark manager's page back to chrome://bookmarks/ (which I forgot to change in 1.3.2).
- Changed the way of invoking JavaScript bookmarklet due to some security concern.

== 1.3.2 (2013-02-19) ==
- Slightly improved the options page.
- The extension will now ask you to enable JavaScript bookmarklet support when attempt to use one.
- Minor code changes produces slight unnoticeable performance increase.
- Chrome will now unload this extension when not being used, so it will not consume any system resources when idle.

== 1.3 (2012-07-12) ==
- (internal) Switched to manifest version 2.
- The persist permission to "your data on all websites" and "your tabs and browsing activity" is removed. Instead an option is added for enabling support for JavaScript bookmarklet. The related permissions will be requested only when the option is enabled.
- A bug that prevents automatically navigating to the only match when the option "Automatically selects full match on name" is disabled is fixed.

== 1.2.2 (2011-09-14) ==
- Javascript bookmarks had never worked before due to lack of permission. This version should have fixed it.

== 1.2.1 (2011-09-13) ==
- Due to my carelessness, a full match will pops out both the selected page and the bookmark search page. This is likely fixed.
- Automatically selects if there is only one search result.
- Allow setting the maximum items to show.
- The option page should work fine.
- Some minor improvements.

== 1.2 (2011-09-12) ==
- Bookmark Search can now automatically select the full match. (see Options)
- Display is improved. It now shows both name and address.
- Some minor improvements.
- The icons are updated, although they are still...

== 1.1 (2011-03-05) ==
- Changed the keyword from "bookmark" to "bm"!

== 1.0 (2011-02-28) ==
- First release!                    

Extension Basic Information

Name Bookmark Search Bookmark Search
ID hhmokalkpaiacdofbcddkogifepbaijk
Official URL https://chromewebstore.google.com/detail/bookmark-search/hhmokalkpaiacdofbcddkogifepbaijk
Description Search for bookmarks from the omnibox.
File Size 28.59 KB
Installation Count 28,174
Current Version 1.4.3
Last Updated 2018-08-20
Publish Date 2018-08-19
Rating 4.37/5 Total 202 Ratings
Developer Alvin Wong
Payment Type free
Extension Website https://github.com/alvinhochun/chrome-bookmark-search
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark Search",
    "version": "1.4.3",
    "manifest_version": 2,
    "minimum_chrome_version": "28.0",
    "description": "Search for bookmarks from the omnibox.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "search_common.js",
            "background.js"
        ],
        "persistent": false
    },
    "omnibox": {
        "keyword": "bm"
    },
    "permissions": [
        "bookmarks",
        "notifications"
    ],
    "optional_permissions": [
        "activeTab"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "icon48.png"
    ]
}