Private Bookmarker

Private Bookmarker

Private Bookmark app will help you save bookmarks which are password protected.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Private Bookmarker",
  "version": "1.4.1",
  "manifest_version": 2,
  "description": "Private Bookmark app will help you save bookmarks which are password protected.",
  "browser_action": {
    "default_icon": "bookmark.png",
    "default_popup": "home.html"
  },
  "permissions": [
    "http://code.jquery.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "database.js",
        "jquery-2.0.3.min.js",
        "addbookmark.js",
        "jquery-ui.js",
        "common.js",
        "home.js",
        "passcode.js",
        "aes.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "offline_enabled": true
}