Bookmark Express

Bookmark Express

This extension displays a list of your bookmarks filtered by instant search. That's it.

Merlin
Additional files are visible only to premium users

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