Bookmark Express

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

什麼是Bookmark Express?

Bookmark Express是由Eric Majerus開發的Chrome擴展程式,該擴展的主要功能是“This extension displays a list of your bookmarks filtered by instant search. That's it.”。

擴展截圖

screenshot
screenshot
screenshot

下載Bookmark Express擴展crx文件

下載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
官方網址 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"
            }
        }
    }
}