Fokus

Fokus

Chrome Extension for blocking website for specified duration between instances of closing and opening tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fokus",
  "description": "Chrome Extension for blocking website for specified duration between instances of closing and opening tab",
  "version": "1.5",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "clock.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "extension_small.png"
  },
  "background": {
    "scripts": [
      "dateAndTime.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ]
}