Bookmark Express

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

O que é Bookmark Express?

Bookmark Express é uma extensão do Chrome desenvolvida por Eric Majerus, e sua principal característica é "This extension displays a list of your bookmarks filtered by instant search. That's it.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bookmark Express

Baixe arquivos de extensão Bookmark Express no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Bookmark Express Bookmark Express
ID edgcdcdceojjbiebdbgmacecicaknjih
URL Oficial https://chromewebstore.google.com/detail/bookmark-express/edgcdcdceojjbiebdbgmacecicaknjih
Descrição This extension displays a list of your bookmarks filtered by instant search. That's it.
Tamanho do Arquivo 88.19 KB
Contagem de Instalações 927
Versão Atual 8.1
Última Atualização 2019-04-06
Data de Publicação 2019-04-05
Classificação 4.70/5 Total de 20 Avaliações
Desenvolvedor Eric Majerus
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://bitbucket.org/ackmanx/bookmark-express/src
URL da Página de Ajuda https://bitbucket.org/ackmanx/bookmark-express/issues
Idiomas Suportados 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"
            }
        }
    }
}