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.

¿Qué es Chrome Bookmark Search?

Chrome Bookmark Search es una extensión de Chrome desarrollada por Peppe L-G, y su función principal es "Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Chrome Bookmark Search

Descarga archivos de extensión Chrome Bookmark Search en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Chrome Bookmark Search Chrome Bookmark Search
ID naggokfijmbenljcdlajbaccepmihagc
URL Oficial https://chromewebstore.google.com/detail/chrome-bookmark-search/naggokfijmbenljcdlajbaccepmihagc
Descripción Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.
Tamaño del Archivo 16.95 KB
Cantidad de Instalaciones 1,774
Versión Actual 1.2.0
Última Actualización 2019-02-08
Fecha de Publicación 2019-02-08
Calificación 4.00/5 Total de 3 Calificaciones
Desarrollador Peppe L-G
Tipo de Pago free
Idiomas Soportados 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"
    }
}