Examine source code of Booksmart

Inspect and view changes in Booksmart 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": 3,
  "name": "Booksmart",
  "description": "Customisable start page for quickly accessing your most important bookmarks.",
  "version": "1.3.2",
  "author": "IFYates",
  "icons": {
    "128": "assets/icon.png"
  },
  "permissions": [
    "bookmarks",
    "downloads",
    "storage",
    "tabs",
    "topSites"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "action": {
    "default_icon": "assets/icon.png"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  }
}