Bookmark Express

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

Bookmark Express là gì?

Bookmark Express là một tiện ích mở rộng Chrome được phát triển bởi Eric Majerus, và tính năng chính của nó là "This extension displays a list of your bookmarks filtered by instant search. That's it.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bookmark Express

Tải xuống các tệp mở rộng Bookmark Express dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bookmark Express Bookmark Express
ID edgcdcdceojjbiebdbgmacecicaknjih
URL Chính Thức https://chromewebstore.google.com/detail/bookmark-express/edgcdcdceojjbiebdbgmacecicaknjih
Mô tả This extension displays a list of your bookmarks filtered by instant search. That's it.
Kích Thước Tệp 88.19 KB
Số Lần Cài Đặt 927
Phiên Bản Hiện Tại 8.1
Cập Nhật Lần Cuối 2019-04-06
Ngày Phát Hành 2019-04-05
Đánh Giá 4.70/5 Tổng số 20 Đánh Giá
Nhà Phát Triển Eric Majerus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bitbucket.org/ackmanx/bookmark-express/src
URL Trang Trợ Giúp https://bitbucket.org/ackmanx/bookmark-express/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}