Motivation - #1 Rated Moment Dashboard

Motivation - #1 Rated Moment Dashboard

The Motivation New Moment Dashboard increases your productivity by allowing you to set your Focus & ToDo lists from the start page.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Motivation - #1 Rated Moment Dashboard",
  "short_name": "Motivation",
  "description": "The Motivation New Moment Dashboard increases your productivity by allowing you to set your Focus & ToDo lists from the start page.",
  "version": "1.1.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "xbx_init.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bing.com/*"
      ],
      "js": [
        "xxc_background.js",
        "bing.js",
        "xxc_submit_to_bing.js"
      ],
      "css": [],
      "run_at": "document_end"
    }
  ],
  "action": {
    "deafult_icon": {
      "16": "./assets/images/favicon.png",
      "32": "./assets/images/favicon.png",
      "48": "./assets/images/favicon.png",
      "64": "./assets/images/favicon.png"
    },
    "default_title": "Motivation Tab"
  },
  "icons": {
    "16": "./assets/images/favicon.png",
    "32": "./assets/images/favicon.png",
    "48": "./assets/images/favicon.png",
    "64": "./assets/images/favicon.png"
  },
  "permissions": [
    "geolocation",
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "xxc_background.js",
        "bing.js",
        "xxc_submit_to_bing.js"
      ],
      "matches": [
        "https://www.bing.com/*"
      ],
      "use_dynamic_url": true
    }
  ]
}