Website Limiter

Website Limiter

Limits visits to given websites to the specified number, per 24 hours. Once the limit has been reached, the site can no longer be accessed, and a page with the amount of time until the next reset will be shown. Enjoy your newfound productivity!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Website Limiter",
  "version": "1.2resigned1",
  "description": "Limits visits to given websites.",
  "applications": {
    "gecko": {
      "id": "{9489d7dd-ba5f-4ddc-993a-9a31569fa26a}"
    }
  },
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "src/views/splash.html",
    "node_modules/typicons.font/*"
  ],
  "browser_action": {
    "default_icon": "icons/icon-32.png",
    "default_title": "Website Limiter",
    "default_popup": "src/views/popup.html"
  },
  "background": {
    "scripts": [
      "src/constants.js",
      "src/utils.js",
      "src/background/limit-reset.js",
      "src/background/visit-tracker.js"
    ]
  }
}