Mindfulli Quote Wallpapers New Tab

Mindfulli Quote Wallpapers New Tab

Mindfulli is a peaceful new tab page with inspirational quotes and live nature wallpapers to calm and motivate you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mindfulli Quote Wallpapers New Tab",
  "description": "Mindfulli is a peaceful new tab page with inspirational quotes and live nature wallpapers to calm and motivate you.",
  "version": "3.0.19",
  "short_name": "Mindfulli",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": {
      "64": "icons/64.png",
      "128": "icons/128.png"
    },
    "default_title": "Mindfulli Quote Wallpapers New Tab"
  },
  "background": {
    "service_worker": "main.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "*://*.mindfulli.co/*"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newtab/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.mindfulli.co/*"
      ],
      "js": [
        "js/content-scripts/installed.js",
        "js/content-scripts/event-handler.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3
}