Examine source code of BetterBookmarks

Inspect and view changes in BetterBookmarks 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": "BetterBookmarks",
  "version": "1.1resigned1",
  "description": "Adds easily accessible bookmarks to the home page.",
  "permissions": [
    "bookmarks"
  ],
  "chrome_url_overrides": {
    "newtab": "src/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/betterbookmarks.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{99b86f1e-d4ad-44f9-b85c-b3534dc5dfee}"
    }
  }
}