One Deep Breath

One Deep Breath

Take control of your browsing habits using mindfulness.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "One Deep Breath",
  "version": "0.0.12",
  "description": "Take control of your browsing habits using mindfulness.",
  "icons": {
    "128": "images/icons/icon_128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "static/img_video_map.js",
      "static/adult-site-list.js",
      "js/helpers.js",
      "date.js",
      "time.js",
      "background_core.js",
      "background_script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "date.js",
        "time.js",
        "materialize.js",
        "progressbar.min.js",
        "static/img_video_map.js",
        "static/adult-site-list.js",
        "js/helpers.js",
        "date.js",
        "background_core.js",
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://gmail.us3.list-manage.com; object-src 'self'"
}