free will

free will

Control your life! Regain your free will and increase productivity by temporarily delaying access to websites of your choice.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "free will",
  "version": "1.0.0",
  "icons": {
    "48": "free_will2.png",
    "128": "free_will2.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "block.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "free_will2.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "blocked.html",
    "delay.js",
    "block.js",
    "popup.js"
  ]
}