Focus.me

Focus.me

Helps aid productivity by blocking social media and other web distractions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Focus.me",
  "short_name": "Focus.me",
  "version": "1.3",
  "description": "Helps aid productivity by blocking social media and other web distractions",
  "author": "Chris Dalke",
  "icons": {
    "128": "static/img/icon.png"
  },
  "permissions": [
    "tabs",
    "downloads"
  ],
  "browser_action": {
    "default_title": "Focus.me",
    "default_icon": "static/img/icon.png",
    "default_popup": "html/popup.html"
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "static/js/api/jquery-2.1.4.min.js",
        "static/js/pages/contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "static/js/api/moment.min.js",
      "static/js/api/countdown.min.js",
      "static/js/api/moment-countdown.min.js",
      "static/js/util/localstorage.js",
      "static/js/util/filtermanager.js",
      "static/js/pages/background.js"
    ]
  }
}