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文件

下載Bookmark Walker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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