Momentum

Momentum

Replace new tab page with a personal dashboard to help you get focused, stay organized, and keep motivated to achieve your goals.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Momentum",
  "short_name": "Momentum",
  "version": "2.13.34",
  "description": "Replace new tab page with a personal dashboard to help you get focused, stay organized, and keep motivated to achieve your goals.",
  "icons": {
    "16": "img/app/icon-16.png",
    "32": "img/app/icon-32.png",
    "48": "img/app/icon-48.png",
    "128": "img/app/icon-128.png"
  },
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "chrome_url_overrides": {
    "newtab": "dashboard.html"
  },
  "offline_enabled": true,
  "action": {
    "default_title": "Momentum"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.momentumdash.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "content-scripts/momoSiteInterop.js"
      ]
    }
  ],
  "permissions": [
    "offscreen",
    "unlimitedStorage"
  ],
  "optional_permissions": [
    "bookmarks",
    "tabs",
    "sessions",
    "topSites",
    "favicon"
  ]
}