Bookmarks Extension for Google

Bookmarks Extension for Google

Google Bookmarking made easy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_application_title__",
  "description": "__MSG_application_description__",
  "version": "0.0.1",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png",
    "256": "icons/icon_256.png"
  },
  "browser_action": {
    "default_icon": "icons/icon_64.png",
    "default_title": "__MSG_add_to_google_bookmarks__",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "library/jquery-2.1.4/jquery-2.1.4.min.js",
      "common.js",
      "background.js"
    ]
  },
  "commands": {},
  "incognito": "spanning",
  "offline_enabled": false,
  "omnibox": {
    "keyword": "b"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "http://www.google.com/bookmarks/mark?*",
    "https://www.google.com/bookmarks/mark?*"
  ]
}