Examine source code of Notion Activity Tracker

Inspect and view changes in Notion Activity Tracker 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": "Notion Activity Tracker",
  "description": "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "128": "/assets/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/options.html"
      ],
      "js": [
        "sources/echarts.js",
        "sources/jquery-3.6.0.min.js",
        "sources/bootstrap.bundle.js"
      ]
    }
  ]
}