ayaya's Bookmark Tree

ayaya's Bookmark Tree

Provides a button to show bookmark tree and open bookmark in new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_description__",
  "version": "0.14.2",
  "name": "__MSG_bookmarkTree__",
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "permissions": [
    "chrome://favicon/",
    "bookmarks"
  ],
  "commands": {
    "openBookmarkTreeInNewTab": {
      "description": "__MSG_openBookmarkTreeInNewTab__",
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Command+B"
      }
    },
    "openBookmarkTreeInNewWindow": {
      "description": "__MSG_openBookmarkTreeInNewWindow__",
      "suggested_key": {
        "default": "Alt+K",
        "mac": "Command+K"
      }
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}