Bookmarker

Bookmarker

Better bookmarking

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bookmarker",
  "version": "0.1.5.1",
  "author": "Jack Hanford",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "bookmarks"
  ],
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "chrome extension",
    "default_popup": "popup.html"
  },
  "commands": {
    "Open All": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      },
      "description": "Open Bookmarks in the background"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "MacCtrl+Shift+X"
      }
    }
  }
}