Examine source code of Brain Boost

Inspect and view changes in Brain 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": "Brain Boost",
  "description": "Eliminate distractions, boost productivity, stay focused and achieve your goals with this tool",
  "version": "1.0",
  "icons": {
    "128": "images/icon-128.png"
  },
  "action": {
    "default_icon": "images/icon-128-focus.png",
    "default_popup": "popup.html",
    "default_title": "Focus mode on"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "blocked.html",
        "style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}