Bookmark Search
Search for bookmarks from the omnibox.
Bookmark Searchとは何ですか?
Bookmark SearchはAlvin Wongによって開発されたChromeの拡張機能で、その主な機能は「Search for bookmarks from the omnibox.」です。
拡張機能のスクリーンショット
Bookmark Search拡張機能のCRXファイルをダウンロード
Bookmark Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | Bookmark Search |
ID | hhmokalkpaiacdofbcddkogifepbaijk |
公式URL | https://chromewebstore.google.com/detail/bookmark-search/hhmokalkpaiacdofbcddkogifepbaijk |
説明 | Search for bookmarks from the omnibox. |
ファイルサイズ | 28.59 KB |
インストール数 | 28,174 |
現在のバージョン | 1.4.3 |
最終更新日 | 2018-08-20 |
公開日 | 2018-08-19 |
評価 | 4.37/5 合計 202 レビュー |
開発者 | Alvin Wong |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/alvinhochun/chrome-bookmark-search |
対応言語 | 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" ] } |