Bookmark Navigator

A vertical stacking, search enabled, arrow keys/mouse click navigable, simple interface for navigating Chrome bookmarks.

Bookmark Navigatorคืออะไร?

Bookmark Navigator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Neil Spackman และคุณลักษณะหลักของมันคือ "A vertical stacking, search enabled, arrow keys/mouse click navigable, simple interface for navigating Chrome bookmarks."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmark Navigator

ดาวน์โหลดไฟล์ส่วนขยาย Bookmark Navigator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This app is for navigating through all your bookmarks efficiently! This was developed (and is maintained) on spare-time so I'll get to bug fixes as soon as I'm free. Just drop a note in the support tab here in the webstore.

Features:
- Open using shortcuts: CMD + B (Mac) or CTRL + B (PC)
- Vertical-stacking simple UI for browsing
- Search bar with fuzzy search enabled via Fuse.js
- Arrow keys and cursor navigation
- Clickable breadcrumbs
- True bookmark count on folders
- Icon support using chrome://favicon

Anti-features:
- No proper icon (Priority 1)
- Developed on free-time

Feel free to leave reviews and comments. I would love to hear some proper criticism and extra feature ideas - as well as any other extensions you think would be cool to make!

If you like it enough, feel free to DONATE to my paypal! https://paypal.me/pools/c/83AJJhaWaE

Yours truly,
Neil

Known Bugs:
- None yet

5/15/2018
-- v 1.14 --
### Added
- All bookmark directories included
- Implemented fusejs for fuzzy searching
- Searches only pertain to current and nested folders

### Fixed
- PCs can autofocus

4/16/2018
--- v 1.13 ---
### Fixed
- row overflow issue

--- v 1.12 ---
### Note
- removed global option
* if the hotkey doesn't work, see posted video or instructions below to add or choose your own hotkey
Go to "chrome://extensions"
Click on the menu icon in the top left corner
Click the "keyboard shortcuts" option
Find the "Bookmark Navigator" extension and add desired hotkey (or reenter if having issues)

--- v 1.11 testing ---
### Added
- global option for hot key testing

--- v 1.1 ---
### Added
- hotkey CMD + B (Mac) & CTRL + B (PC)
- separate body key input vs input key input (left and right arrows should work differently in search vs navigating)
- If in input, pressing enter selects first option in search results

04/15/2018
--- v1.0 ---
### Added
- search bar
- arrow keys and cursor and click navigation
- clickable breadcrumbs
- bookmark count on folders
- bookmark icons                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bookmark Navigator Bookmark Navigator
ID bfibpphfhdpgkmbpkfmhdiklgcfmmkha
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bookmark-navigator/bfibpphfhdpgkmbpkfmhdiklgcfmmkha
คำอธิบาย A vertical stacking, search enabled, arrow keys/mouse click navigable, simple interface for navigating Chrome bookmarks.
ขนาดไฟล์ 17.38 KB
จำนวนการติดตั้ง 134
เวอร์ชันปัจจุบัน 1.15.1
อัปเดตครั้งล่าสุด 2018-09-05
วันที่เผยแพร่ 2018-09-05
คะแนน 4.60/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Neil Spackman
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark Navigator",
    "version": "1.15.1",
    "manifest_version": 2,
    "description": "A vertical stacking, search enabled, arrow keys\/mouse click navigable, simple interface for navigating Chrome bookmarks.",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "bookmarks",
        "",
        "chrome:\/\/favicon\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icons8-wind-rose-16.png",
            "24": "images\/icons8-wind-rose-24.png",
            "32": "images\/icons8-wind-rose-32.png"
        },
        "default_title": "Bookmark Navigator",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Ctrl+B"
            }
        }
    }
}