#1 Distraction Killer: Focus To Flow

#1 Distraction Killer: Focus To Flow

This extension will keep you focused.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": [
    {
      "name": "Stijn Bernaer",
      "url": "https://focustoflow.com"
    }
  ],
  "manifest_version": 2,
  "name": "#1 Distraction Killer: Focus To Flow ",
  "description": "This extension will keep you focused.",
  "version": "2.9",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "js/functions.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon-128.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/functions.js",
        "js/check_page.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage"
  ]
}