Chrome Bookmark Search

Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.

什麼是Chrome Bookmark Search?

Chrome Bookmark Search是由Peppe L-G開發的Chrome擴展程式,該擴展的主要功能是“Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.”。

擴展截圖

screenshot

下載Chrome Bookmark Search擴展crx文件

下載Chrome Bookmark Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension injects JavaScript code on every page you visit listening for you pressing [CTRL] + [L] on the keyboard. This keyboard combination usually moves the focus to the omnibox, but this extension instead shows a popup allowing you to search for your bookmarks (see screenshot).

Why use this extension? At least I hate the way the omnibox works (suggests search history before your own bookmarks, which is stupid!), and this extension fix that by only searching your bookmarks, and not your search history.

If you don't select a suggested bookmark you will simply search for the entered text on Google or go to the URL you have entered.

This extension also overrides the New Tab page, so you can search for your bookmarks from there as well.                    

擴展基本資訊

名稱 Chrome Bookmark Search Chrome Bookmark Search
ID naggokfijmbenljcdlajbaccepmihagc
官方網址 https://chromewebstore.google.com/detail/chrome-bookmark-search/naggokfijmbenljcdlajbaccepmihagc
簡介 Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.
檔案大小 16.95 KB
安裝次數 1,774
目前版本 1.2.0
更新時間 2019-02-08
上架時間 2019-02-08
評分 4.00/5 共 3 次評分
開發者 Peppe L-G
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Bookmark Search",
    "version": "1.2.0",
    "description": "Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.",
    "manifest_version": 2,
    "permissions": [
        "bookmarks"
    ],
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "load-new-tab.html"
    },
    "icons": {
        "16": "icon-16-16.png",
        "48": "icon-48-48.png",
        "128": "icon-128-128.png"
    }
}