Examine source code of BookmarkBuddy

Inspect and view changes in BookmarkBuddy 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
{
  "manifest_version": 2,
  "name": "BookmarkBuddy",
  "version": "1.0",
  "description": "Share and discover bookmarks within a community of users.",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "icons/icon-48.png",
    "default_title": "BookmarkBuddy",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b2e3f21b-dbb7-4f4f-8fce-c9b83ccf9831}"
    }
  }
}