Examine source code of Mindful Browsing

Inspect and view changes in Mindful Browsing source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "manifest_version": 2,
  "name": "Mindful Browsing",
  "short_name": "Beautifully interrupts mindless browsing,\n and gets you back to your life.",
  "description": "Beautifully interrupts mindless browsing,\n and gets you back to your life.",
  "version": "3.7.14",
  "permissions": [
    "storage",
    "http://*/",
    "https://*/",
    "https://www.mindfulbrowsing.org/*",
    "unlimitedStorage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/style.css",
        "fonts/lato.css"
      ],
      "js": [
        "js/mindful.js",
        "js/photoInfo.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "images/*.png",
    "images/*.jpg",
    "css/style.css",
    "fonts/lato.css",
    "js/mindful.js",
    "js/ractive.min.js",
    "fonts/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'  https://www.google-analytics.com https://ssl.google-analytics.com https://jquery.cdnmirror.com;  object-src 'self'",
  "background": {
    "scripts": [
      "bg.js"
    ]
  }
}