NoDistractions - website blocker

NoDistractions - website blocker

NoDistractions is a bloat-free website blocker with a focus on ease of use and simplicity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "NoDistractions is a bloat-free website blocker with a focus on ease of use and simplicity.",
  "manifest_version": 2,
  "name": "NoDistractions",
  "author": "Asciijakob",
  "version": "1.1.0",
  "homepage_url": "https://github.com/AsciiJakob/NoDistractions",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "64": "static/assets/icon-low.png",
    "128": "static/assets/icon-medium.png"
  },
  "browser_action": {
    "default_icon": "static/assets/icon-low.png",
    "default_title": "NoDistractions",
    "default_popup": "/popup/popup.html"
  },
  "web_accessible_resources": [
    "/blocked/blocked.html",
    "/license-acknowledgements.txt"
  ],
  "commands": {
    "toggle-enabled": {
      "suggested_key": {
        "default": "Ctrl+Alt+D"
      },
      "description": "Toggles the blocking-state on or off"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>",
    "notifications",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "page": "/background/background.html",
    "persistent": true
  },
  "options_ui": {
    "page": "/settings/settings.html",
    "browser_style": true
  }
}