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.

Was ist Chrome Bookmark Search?

Chrome Bookmark Search ist eine Chrome-Erweiterung, die von Peppe L-G entwickelt wurde, und ihr Hauptmerkmal ist "Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.".

Erweiterungsscreenshots

screenshot

Chrome Bookmark Search-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome Bookmark Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Chrome Bookmark Search Chrome Bookmark Search
ID naggokfijmbenljcdlajbaccepmihagc
Offizielle URL https://chromewebstore.google.com/detail/chrome-bookmark-search/naggokfijmbenljcdlajbaccepmihagc
Beschreibung Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.
Dateigröße 16.95 KB
Installationsanzahl 1,774
Aktuelle Version 1.2.0
Letztes Update 2019-02-08
Veröffentlichungsdatum 2019-02-08
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler Peppe L-G
Zahlungsart free
Unterstützte Sprachen 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"
    }
}