Examine source code of Bookmarks Extension for Google

Inspect and view changes in Bookmarks Extension for Google source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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?*"
  ]
}