Momentum

Momentum

Replace your new tab page with an all-in-one productivity dashboard. Featuring daily inspiration, focus reminders, to-do lists, local weather info, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Momentum",
  "short_name": "Momentum",
  "version": "2.13.24",
  "description": "Replace new tab page with a personal dashboard featuring to-do, weather, and inspiration.",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "55.0"
    }
  },
  "icons": {
    "48": "img/app/icon-48.png",
    "96": "img/app/icon-96.png"
  },
  "background": {
    "scripts": [
      "background-scripts/momentum.js",
      "background-scripts/dataSyncBGScript.js"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self' ",
  "chrome_url_overrides": {
    "newtab": "dashboard.html"
  },
  "browser_action": {
    "default_title": "Momentum",
    "default_icon": {
      "16": "img/app/icon-16.png",
      "32": "img/app/icon-32.png"
    }
  },
  "chrome_settings_overrides": {
    "homepage": "dashboard.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.momentumdash.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "content-scripts/momoSiteInterop.js"
      ]
    }
  ],
  "permissions": [
    "unlimitedStorage",
    "https://*.momentumdash.com/*"
  ],
  "optional_permissions": [
    "tabs",
    "sessions",
    "bookmarks",
    "topSites"
  ]
}