Mist: The way to be mindful for busy people.

Mist: The way to be mindful for busy people.

Drop the cluttered meditation apps that never get opened. Mist lets you actually be more mindful without the hassle.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1.0",
  "short_name": "Mist for Chrome",
  "name": "Mist: The way to be mindful for busy people.",
  "description": "Drop the cluttered meditation apps that never get opened. Mist lets you actually be more mindful without the hassle.",
  "browser_action": {
    "default_title": "Mist for Chrome",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "web_accessible_resources": [
    "/static/media/bg-image.jpeg",
    "/static/media/settings.d9315c47.svg"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src-elem 'self' 'sha256-iZBJenro+ON4QTZuWnyvHk3Yj9s/TfHgJLTCP8EJzhE=' https://www.googletagmanager.com/gtm.js https://ssl.google-analytics.com/ga.js https://apis.google.com/ https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://js.stripe.com/; script-src 'self' 'sha256-iZBJenro+ON4QTZuWnyvHk3Yj9s/TfHgJLTCP8EJzhE=' https://ssl.google-analytics.com/ga.js https://js.stripe.com/ https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'"
}