Website Locker

Website Locker

Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Website Locker",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.",
  "homepage_url": "https://github.com/calebgeizer",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Unlock/Lock",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "https://*/*",
    "http://*/*",
    "storage"
  ]
}