Bookmark Walker

Hotkey-based browsing of bookmarks, in forward or reverse order

Bookmark Walker란 무엇입니까?

Bookmark Walker은(는) Tyler Durrett에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hotkey-based browsing of bookmarks, in forward or reverse order"입니다.

확장 프로그램 스크린샷

screenshot

Bookmark Walker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        What
----
A simple Google Chrome extension which creates shortcut keys for stepping through bookmarks from the folder of your choice in forward or reverse order.

Why
---
I save a lot of bookmarks while browsing the web, but I find it overly tedious to click through my various bookmark folders to revisit my saved sites. I wanted the ability to pick a particular folder, and then press a hotkey to step through each bookmark without hassle.

How
---

- Click the extension's icon to choose a bookmarks folder to step through.

- Press Alt+M to browse forward through the bookmarks in your chosen folder. Successive presses will step through each bookmark in the folder, displaying them in the current tab.

- Alt+N cycles through the bookmarks in the opposite order.                    

확장 프로그램 기본 정보

이름 Bookmark Walker Bookmark Walker
ID jolkcmlidbppgpplmcmpkdhlefemacfd
공식 URL https://chromewebstore.google.com/detail/bookmark-walker/jolkcmlidbppgpplmcmpkdhlefemacfd
설명 Hotkey-based browsing of bookmarks, in forward or reverse order
파일 크기 153 KB
설치 횟수 121
현재 버전 1.4.3
최근 업데이트 2013-10-12
출시 날짜 2013-10-12
평점 4.43/5 총 7 개의 평점
개발자 Tyler Durrett
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tylerdurrett/chrome-bookmark-walker
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark Walker",
    "short_name": "BookmarkWalk",
    "description": "Hotkey-based browsing of bookmarks, in forward or reverse order",
    "version": "1.4.3",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "25",
    "permissions": [
        "tabs",
        "bookmarks"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Bookmark Walker",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "load-previous-bookmark": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Load the previous bookmark in the current folder"
        },
        "load-next-bookmark": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Load the next bookmark in the current folder"
        }
    }
}