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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chrome Bookmark Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}