Examine source code of Notion Boost

Inspect and view changes in Notion Boost 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": "Notion Boost",
  "description": "Boost Notion productivity with 20+ customizations like outline, small text full width for all, back to top button etc",
  "version": "3.3.6",
  "short_name": "Notion Boost",
  "icons": {
    "16": "/icon/icon16.png",
    "48": "/icon/icon48.png",
    "128": "/icon/icon128.png"
  },
  "author": "Gourav Goyal",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.notion.so/*",
    "*://*.notion.site/*"
  ],
  "homepage_url": "https://gourav.io/notion-boost",
  "action": {
    "default_icon": {
      "16": "/icon/icon16.png",
      "24": "/icon/icon24.png",
      "32": "/icon/icon32.png"
    },
    "default_title": "notion-boost-browser-extension",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.notion.site/*",
        "*://*.notion.so/*"
      ],
      "css": [
        "content-scripts/content.css"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}