Bookmark sidebar & new tab

Bookmark sidebar & new tab

An easy to use bookmark sidebar/manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/extension-16.png",
    "32": "icons/extension-32.png",
    "48": "icons/extension-48.png",
    "128": "icons/extension-128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "bookmarks",
    "chrome://favicon/*/"
  ],
  "content_security_policy": "img-src chrome://favicon/ data:;",
  "commands": {
    "toggle-bm-bar": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "__MSG_toggleBookmarkSidebarVisibility__"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "__MSG_bookmarks__"
  },
  "web_accessible_resources": [
    "fonts/*"
  ],
  "manifest_version": 2,
  "version": "2.0.0"
}