Bookmark Express

This extension displays a list of your bookmarks filtered by instant search. That's it.

Что такое Bookmark Express?

Bookmark Express - это расширение Chrome, разработанное Eric Majerus, и его основная функция - "This extension displays a list of your bookmarks filtered by instant search. That's it.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Bookmark Express

Скачайте файлы расширений Bookmark Express в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Chrome's Omnibar only shows a few search results for bookmarks and there's no way to see more without going somewhere else.

This solves that by letting you search your bookmarks and see all the results, along with full name, folder it's in, the URL and highlighted search hits.

Searching is instant so you get immediate feedback on results. After searching, you can use the mouse or keyboard arrow keys to select a result and Enter key to open the highlighted bookmark.

Issues for feature requests or help can be created at the project's GitHub page below:

Source code: https://github.com/ackmanx/bookmark-express                    

Основная информация о расширении

Название Bookmark Express Bookmark Express
ID edgcdcdceojjbiebdbgmacecicaknjih
Официальный URL https://chromewebstore.google.com/detail/bookmark-express/edgcdcdceojjbiebdbgmacecicaknjih
Описание This extension displays a list of your bookmarks filtered by instant search. That's it.
Размер файла 88.19 KB
Количество установок 927
Текущая Версия 8.1
Последнее Обновление 2019-04-06
Дата публикации 2019-04-05
Рейтинг 4.70/5 Всего 20 оценок
Разработчик Eric Majerus
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://bitbucket.org/ackmanx/bookmark-express/src
URL страницы помощи https://bitbucket.org/ackmanx/bookmark-express/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmark Express",
    "description": "This extension displays a list of your bookmarks filtered by instant search. That's it.",
    "version": "8.1",
    "browser_action": {
        "default_popup": "app\/popup.html"
    },
    "background": {
        "page": "app\/bg.html"
    },
    "permissions": [
        "bookmarks",
        "chrome:\/\/favicon\/"
    ],
    "icons": {
        "48": "images\/app\/icon48.png",
        "128": "images\/app\/icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L",
                "chromeos": "Ctrl+Shift+L",
                "linux": "Ctrl+Shift+L"
            }
        }
    }
}