Examine source code of Cool Bookmarks

Inspect and view changes in Cool Bookmarks 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",
  "name": "Cool Bookmarks",
  "description": "A simple bookmark manager for Chrome",
  "version": "0.7.0",
  "manifest_version": 2,
  "icons": {
    "16": "media/icon16.png",
    "48": "media/icon48.png",
    "128": "media/icon128.png"
  },
  "background": {
    "scripts": [
      "code/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "media/icon16.png",
    "default_title": "Cool Bookmarks",
    "default_popup": "code/popup.html"
  },
  "___page_action": {
    "default_icon": "icon.png",
    "default_title": "Inject sidebar"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libraries/jquery-1.8.3.min.js",
        "libraries/jquery-ui.js"
      ],
      "____js": [
        "libraries/jquery-ui-1.9.2.custom/js/jquery-1.8.3.js",
        "libraries/jquery-ui-1.9.2.custom/js/jquery-ui-1.9.2.custom.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "bookmarks",
    "chrome://favicon/"
  ]
}