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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            }
        }
    }
}