Mindful Self-Discipline

Mindful Self-Discipline

Keep yourself on track with your goals. Visualize your progress. Overcome procrastination, distraction and excuses in a simple way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mindful Self-Discipline",
  "version": "1.0.3",
  "incognito": "spanning",
  "description": "Keep yourself on track with your goals. Visualize your progress. Overcome procrastination, distraction and excuses in a simple way.",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "72": "images/icon72.png",
    "128": "images/icon128.png",
    "256": "images/icon256.png",
    "400": "images/icon400.png",
    "500": "images/icon500.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+M"
      }
    }
  },
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "<all_urls>",
    "notifications",
    "unlimitedStorage"
  ],
  "browser_action": {
    "default_title": "Mindful Self-Discipline",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "64": "images/icon64.png",
      "72": "images/icon72.png",
      "128": "images/icon128.png",
      "256": "images/icon256.png",
      "400": "images/icon400.png",
      "500": "images/icon500.png"
    }
  },
  "web_accessible_resources": [
    "images/*",
    "fonts/*",
    "notify_page.js",
    "bubble.css",
    "index.html",
    "popup.html",
    "popup.js",
    "popup.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": false,
      "match_about_blank": true
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}