Bookmark Walker

Bookmark Walker

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

Merlin
Additional files are visible only to premium users

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