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 là gì?

Chrome Bookmark Search là một tiện ích mở rộng Chrome được phát triển bởi Peppe L-G, và tính năng chính của nó là "Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrome Bookmark Search

Tải xuống các tệp mở rộng Chrome Bookmark Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chrome Bookmark Search Chrome Bookmark Search
ID naggokfijmbenljcdlajbaccepmihagc
URL Chính Thức https://chromewebstore.google.com/detail/chrome-bookmark-search/naggokfijmbenljcdlajbaccepmihagc
Mô tả Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.
Kích Thước Tệp 16.95 KB
Số Lần Cài Đặt 1,774
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2019-02-08
Ngày Phát Hành 2019-02-08
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Peppe L-G
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}